diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bbc21cd..0675a65a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,7 @@ jobs: name: CI runs-on: ubuntu-latest strategy: + fail-fast: false matrix: test-prefix: - misc/logger @@ -39,16 +40,16 @@ jobs: with: node-version: 16 - - name: Check node_modules cache - id: cache-node-modules - uses: actions/cache@v3 - with: - path: | - node_modules - */*/node_modules - key: ${{ runner.os }}-nodemodules-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-nodemodules- + # - name: Check node_modules cache + # id: cache-node-modules + # uses: actions/cache@v3 + # with: + # path: | + # node_modules + # */*/node_modules + # key: ${{ runner.os }}-nodemodules-${{ hashFiles('**/package-lock.json') }} + # restore-keys: | + # ${{ runner.os }}-nodemodules- - name: Install NPM Dependencies run: npm ci diff --git a/browser/window-getters/package.json b/browser/window-getters/package.json index ae51cf25..a755f5c2 100644 --- a/browser/window-getters/package.json +++ b/browser/window-getters/package.json @@ -32,7 +32,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/browser/window-metadata/package.json b/browser/window-metadata/package.json index 6401aa75..404d92c1 100644 --- a/browser/window-metadata/package.json +++ b/browser/window-metadata/package.json @@ -32,7 +32,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/jsonrpc/http-connection/package.json b/jsonrpc/http-connection/package.json index f7758173..0ec32266 100644 --- a/jsonrpc/http-connection/package.json +++ b/jsonrpc/http-connection/package.json @@ -35,7 +35,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/jsonrpc/provider/package.json b/jsonrpc/provider/package.json index 622b527e..76fd7647 100644 --- a/jsonrpc/provider/package.json +++ b/jsonrpc/provider/package.json @@ -35,7 +35,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "test:watch": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 3000 --exit -r ts-node/register --watch --watch-files . ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", diff --git a/jsonrpc/types/package.json b/jsonrpc/types/package.json index 1d2db203..6725d289 100644 --- a/jsonrpc/types/package.json +++ b/jsonrpc/types/package.json @@ -35,7 +35,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/jsonrpc/utils/package.json b/jsonrpc/utils/package.json index b08d3ee1..67bc1627 100644 --- a/jsonrpc/utils/package.json +++ b/jsonrpc/utils/package.json @@ -35,7 +35,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha -r ts-node/register ./test/**/*.{test,spec}.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/jsonrpc/ws-connection/package.json b/jsonrpc/ws-connection/package.json index 8ce0f542..be74656d 100644 --- a/jsonrpc/ws-connection/package.json +++ b/jsonrpc/ws-connection/package.json @@ -35,7 +35,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/misc/cacao/package.json b/misc/cacao/package.json index f119e2a2..2f7914c7 100644 --- a/misc/cacao/package.json +++ b/misc/cacao/package.json @@ -12,7 +12,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/misc/did-jwt/package.json b/misc/did-jwt/package.json index cb831761..88d74eaa 100644 --- a/misc/did-jwt/package.json +++ b/misc/did-jwt/package.json @@ -12,7 +12,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "npm-publish:latest": "npm publish --access public --tag latest", "npm-publish:canary": "npm publish --access public --tag canary", diff --git a/misc/encoding/package.json b/misc/encoding/package.json index 211914b0..c71f3591 100644 --- a/misc/encoding/package.json +++ b/misc/encoding/package.json @@ -36,7 +36,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/misc/environment/package.json b/misc/environment/package.json index f920544f..64912beb 100644 --- a/misc/environment/package.json +++ b/misc/environment/package.json @@ -33,7 +33,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/misc/events/package.json b/misc/events/package.json index 890c0543..f731fd8d 100644 --- a/misc/events/package.json +++ b/misc/events/package.json @@ -35,7 +35,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/misc/heartbeat/package.json b/misc/heartbeat/package.json index fe4e99d6..6245f3ae 100644 --- a/misc/heartbeat/package.json +++ b/misc/heartbeat/package.json @@ -34,7 +34,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/misc/history/package.json b/misc/history/package.json index 58285313..fe046370 100644 --- a/misc/history/package.json +++ b/misc/history/package.json @@ -12,7 +12,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 20000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", @@ -40,14 +40,14 @@ "dist" ], "devDependencies": { - "@walletconnect/core": "^2.7.3", + "@walletconnect/core": "^2.10.0", "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/types": "^2.7.3" + "@walletconnect/types": "^2.10.0" }, "dependencies": { "@ethersproject/hash": "^5.7.0", "@ethersproject/transactions": "^5.7.0", - "@walletconnect/utils": "^2.7.3", + "@walletconnect/utils": "^2.10.0", "isomorphic-unfetch": "^3.1.0" } } diff --git a/misc/identity-keys/package.json b/misc/identity-keys/package.json index a26262f6..de89509d 100644 --- a/misc/identity-keys/package.json +++ b/misc/identity-keys/package.json @@ -15,7 +15,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/misc/keyvaluestorage/package.json b/misc/keyvaluestorage/package.json index 2a7bceed..6faba90b 100644 --- a/misc/keyvaluestorage/package.json +++ b/misc/keyvaluestorage/package.json @@ -34,7 +34,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "rm -rf ./test/dbs/* && env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "npm-publish:latest": "npm publish --access public --tag latest", "npm-publish:canary": "npm publish --access public --tag canary", diff --git a/misc/logger/package.json b/misc/logger/package.json index 2d67203a..52885155 100644 --- a/misc/logger/package.json +++ b/misc/logger/package.json @@ -33,7 +33,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/misc/safe-json/package.json b/misc/safe-json/package.json index 116b098b..33bf0e33 100644 --- a/misc/safe-json/package.json +++ b/misc/safe-json/package.json @@ -32,7 +32,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/misc/time/package.json b/misc/time/package.json index c89fcb58..05fcde95 100644 --- a/misc/time/package.json +++ b/misc/time/package.json @@ -34,7 +34,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/package-lock.json b/package-lock.json index cff6ad48..e03b230e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -449,13 +449,13 @@ "dependencies": { "@ethersproject/hash": "^5.7.0", "@ethersproject/transactions": "^5.7.0", - "@walletconnect/utils": "^2.7.3", + "@walletconnect/utils": "^2.10.0", "isomorphic-unfetch": "^3.1.0" }, "devDependencies": { - "@walletconnect/core": "^2.7.3", + "@walletconnect/core": "^2.10.0", "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/types": "^2.7.3" + "@walletconnect/types": "^2.10.0" } }, "misc/identity-keys": { @@ -8682,9 +8682,9 @@ "link": true }, "node_modules/@walletconnect/core": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.9.1.tgz", - "integrity": "sha512-xyWeP0eLhEEDQAVJSmqs4n/AClKUM+8os2ZFe7BTuw1tFYjeLNVDtKCHziVOSTh8wEChMsKSGKA4zerQoH8mAQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.10.0.tgz", + "integrity": "sha512-Z8pdorfIMueuiBXLdnf7yloiO9JIiobuxN3j0OTal+MYc4q5/2O7d+jdD1DAXbLi1taJx3x60UXT/FPVkjIqIQ==", "dependencies": { "@walletconnect/heartbeat": "1.2.1", "@walletconnect/jsonrpc-provider": "1.0.13", @@ -8697,8 +8697,8 @@ "@walletconnect/relay-auth": "^1.0.4", "@walletconnect/safe-json": "^1.0.2", "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.9.1", - "@walletconnect/utils": "2.9.1", + "@walletconnect/types": "2.10.0", + "@walletconnect/utils": "2.10.0", "events": "^3.3.0", "lodash.isequal": "4.5.0", "uint8arrays": "^3.1.0" @@ -8795,9 +8795,9 @@ "dev": true }, "node_modules/@walletconnect/types": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.9.1.tgz", - "integrity": "sha512-xbGgTPuD6xsb7YMvCESBIH55cjB86QAnnVL50a/ED42YkQzDsOdJ0VGTbrm0tG5cxUOF933rpxZQjxGdP+ovww==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.10.0.tgz", + "integrity": "sha512-kSTA/WZnbKdEbvbXSW16Ty6dOSzOZCHnGg6JH7q1MuraalD2HuNg00lVVu7QAZ/Rj1Gn9DAkrgP5Wd5a8Xq//Q==", "dependencies": { "@walletconnect/events": "^1.0.1", "@walletconnect/heartbeat": "1.2.1", @@ -8808,9 +8808,9 @@ } }, "node_modules/@walletconnect/utils": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.9.1.tgz", - "integrity": "sha512-tXeQVebF5oPBvhdmuUyVSkSIBYx/egIi4czav1QrnUpwrUS1LsrFhyWBxSbhN7TXY287ULWkEf6aFpWOHdp5EA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.10.0.tgz", + "integrity": "sha512-9GRyEz/7CJW+G04RvrjPET5k7hOEsB9b3fF9cWDk/iDCxSWpbkU/hv/urRB36C+gvQMAZgIZYX3dHfzJWkY/2g==", "dependencies": { "@stablelib/chacha20poly1305": "1.0.1", "@stablelib/hkdf": "1.0.1", @@ -8820,7 +8820,7 @@ "@walletconnect/relay-api": "^1.0.9", "@walletconnect/safe-json": "^1.0.2", "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.9.1", + "@walletconnect/types": "2.10.0", "@walletconnect/window-getters": "^1.0.1", "@walletconnect/window-metadata": "^1.0.1", "detect-browser": "5.3.0", @@ -33191,9 +33191,9 @@ } }, "@walletconnect/core": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.9.1.tgz", - "integrity": "sha512-xyWeP0eLhEEDQAVJSmqs4n/AClKUM+8os2ZFe7BTuw1tFYjeLNVDtKCHziVOSTh8wEChMsKSGKA4zerQoH8mAQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.10.0.tgz", + "integrity": "sha512-Z8pdorfIMueuiBXLdnf7yloiO9JIiobuxN3j0OTal+MYc4q5/2O7d+jdD1DAXbLi1taJx3x60UXT/FPVkjIqIQ==", "requires": { "@walletconnect/heartbeat": "1.2.1", "@walletconnect/jsonrpc-provider": "1.0.13", @@ -33206,8 +33206,8 @@ "@walletconnect/relay-auth": "^1.0.4", "@walletconnect/safe-json": "^1.0.2", "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.9.1", - "@walletconnect/utils": "2.9.1", + "@walletconnect/types": "2.10.0", + "@walletconnect/utils": "2.10.0", "events": "^3.3.0", "lodash.isequal": "4.5.0", "uint8arrays": "^3.1.0" @@ -33343,10 +33343,10 @@ "requires": { "@ethersproject/hash": "^5.7.0", "@ethersproject/transactions": "^5.7.0", - "@walletconnect/core": "^2.7.3", + "@walletconnect/core": "^2.10.0", "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/types": "^2.7.3", - "@walletconnect/utils": "^2.7.3", + "@walletconnect/types": "^2.10.0", + "@walletconnect/utils": "^2.10.0", "isomorphic-unfetch": "^3.1.0" } }, @@ -34190,9 +34190,9 @@ "dev": true }, "@walletconnect/types": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.9.1.tgz", - "integrity": "sha512-xbGgTPuD6xsb7YMvCESBIH55cjB86QAnnVL50a/ED42YkQzDsOdJ0VGTbrm0tG5cxUOF933rpxZQjxGdP+ovww==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.10.0.tgz", + "integrity": "sha512-kSTA/WZnbKdEbvbXSW16Ty6dOSzOZCHnGg6JH7q1MuraalD2HuNg00lVVu7QAZ/Rj1Gn9DAkrgP5Wd5a8Xq//Q==", "requires": { "@walletconnect/events": "^1.0.1", "@walletconnect/heartbeat": "1.2.1", @@ -34203,9 +34203,9 @@ } }, "@walletconnect/utils": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.9.1.tgz", - "integrity": "sha512-tXeQVebF5oPBvhdmuUyVSkSIBYx/egIi4czav1QrnUpwrUS1LsrFhyWBxSbhN7TXY287ULWkEf6aFpWOHdp5EA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.10.0.tgz", + "integrity": "sha512-9GRyEz/7CJW+G04RvrjPET5k7hOEsB9b3fF9cWDk/iDCxSWpbkU/hv/urRB36C+gvQMAZgIZYX3dHfzJWkY/2g==", "requires": { "@stablelib/chacha20poly1305": "1.0.1", "@stablelib/hkdf": "1.0.1", @@ -34215,7 +34215,7 @@ "@walletconnect/relay-api": "^1.0.9", "@walletconnect/safe-json": "^1.0.2", "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.9.1", + "@walletconnect/types": "2.10.0", "@walletconnect/window-getters": "^1.0.1", "@walletconnect/window-metadata": "^1.0.1", "detect-browser": "5.3.0", diff --git a/relay/relay-api/package.json b/relay/relay-api/package.json index 4b72b71a..ae41bb73 100644 --- a/relay/relay-api/package.json +++ b/relay/relay-api/package.json @@ -32,7 +32,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest", diff --git a/relay/relay-auth/package.json b/relay/relay-auth/package.json index 359535f1..52eacce2 100644 --- a/relay/relay-auth/package.json +++ b/relay/relay-auth/package.json @@ -33,7 +33,7 @@ "build:pre": "npm run clean", "build:types": "tsc", "build:source": "rollup --config rollup.config.js", - "build": "npm run build:pre && npm run build:source && npm run build:types", + "build": "npm run build:source && npm run build:types", "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts", "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'", "npm-publish:latest": "npm publish --access public --tag latest",