From cd98ebbd0786573d12acc34d5a44abb6c31cfce7 Mon Sep 17 00:00:00 2001 From: mtyszczak <mateusz.tyszczak@gmail.com> Date: Tue, 11 Mar 2025 13:20:27 +0100 Subject: [PATCH] Fix WASM bundling --- .gitlab-ci.yml | 1 + package.json | 2 +- scripts/snapper.sh | 2 +- snap.config.ts | 3 --- snap.manifest.json | 4 ++-- 5 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9bd84c8..47cc97f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,6 +37,7 @@ build: artifacts: paths: - hiveio-metamask-snap-*.tgz + - snapper*.log.json when: always expire_in: 1 week diff --git a/package.json b/package.json index 21e6a7d..34bb595 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hiveio/metamask-snap", - "version": "1.0.0", + "version": "1.0.1", "description": "Hive wallet extension allowing you to sign transactions using keys derived from your Metamask wallet", "main": "./dist/bundle.js", "files": [ diff --git a/scripts/snapper.sh b/scripts/snapper.sh index 7bf4faf..46700d0 100755 --- a/scripts/snapper.sh +++ b/scripts/snapper.sh @@ -12,6 +12,6 @@ pnpm exec snapper -p "${SNAP_PATH}" --output "${LOG_FILE}" # Display simplified human-readable report and exit with error code if any issues found if [ -f "${LOG_FILE}" ]; then - jq -r '.ESLinting[] | "\(.position.filePath):\(.position.lineNum):\n\(.type): \(.description)\n"' "${LOG_FILE}" + jq -r 'to_entries[] | .value[] | "\(.position.filePath):\(.position.lineNum):\n\(.type): \(.description)\n"' "${LOG_FILE}" exit 1 fi; diff --git a/snap.config.ts b/snap.config.ts index 6cfbf72..2894d23 100644 --- a/snap.config.ts +++ b/snap.config.ts @@ -7,9 +7,6 @@ const config: SnapConfig = { server: { port: 8080 }, - experimental: { - wasm: true - }, customizeWebpackConfig: webpackConfig => { webpackConfig.module = webpackConfig.module ?? {}; webpackConfig.module.rules = webpackConfig.module.rules ?? []; diff --git a/snap.manifest.json b/snap.manifest.json index 3739c3e..3863292 100644 --- a/snap.manifest.json +++ b/snap.manifest.json @@ -1,5 +1,5 @@ { - "version": "1.0.0", + "version": "1.0.1", "description": "Hive wallet extension allowing you to sign transactions using keys derived from your Metamask wallet", "proposedName": "Hive Wallet", "repository": { @@ -7,7 +7,7 @@ "url": "git+https://gitlab.syncad.com/hive/metamask-snap.git" }, "source": { - "shasum": "cJhQWny3lmSgum2PkEdzz3al8F/+3pZds+IG+feH620=", + "shasum": "FzpJXdDNOVkP9aESauH9YuVQCd0PdhJDR8AXmBblk2E=", "location": { "npm": { "filePath": "dist/bundle.js", -- GitLab