Skip to content

Commit c657fd9

Browse files
committed
Merge pull-request #569
2 parents 640b9c7 + a9e3bcf commit c657fd9

File tree

18 files changed

+22
-18
lines changed

18 files changed

+22
-18
lines changed

packages/api-key-stamper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"access": "public"
4242
},
4343
"scripts": {
44-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
44+
"prepublishOnly": "pnpm run clean && pnpm run build",
4545
"build": "rollup -c",
4646
"clean": "rimraf ./dist ./.cache",
4747
"test": "jest",

packages/cosmjs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"access": "public"
4141
},
4242
"scripts": {
43-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
43+
"prepublishOnly": "pnpm run clean && pnpm run build",
4444
"build": "rollup -c",
4545
"clean": "rimraf ./dist ./.cache",
4646
"test": "jest --passWithNoTests",

packages/crypto/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"access": "public"
3232
},
3333
"scripts": {
34-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
34+
"prepublishOnly": "pnpm run clean && pnpm run build",
3535
"build": "rollup -c",
3636
"clean": "rimraf ./dist ./.cache",
3737
"test": "jest",

packages/eip-1193-provider/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"description": "EIP-1193 Provider for Turnkey.",
1717
"scripts": {
1818
"version": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').name + '@' + require('./package.json').version) + ';'\" > src/version.ts",
19-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
19+
"prepublishOnly": "pnpm run clean && pnpm run build",
2020
"build": "rollup -c",
2121
"clean": "rimraf ./dist ./.cache",
2222
"test": "jest",

packages/encoding/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"access": "public"
3232
},
3333
"scripts": {
34-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
34+
"prepublishOnly": "pnpm run clean && pnpm run build",
3535
"build": "rollup -c",
3636
"clean": "rimraf ./dist ./.cache",
3737
"test": "jest",

packages/ethers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"access": "public"
4141
},
4242
"scripts": {
43-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
43+
"prepublishOnly": "pnpm run clean && pnpm run build",
4444
"build": "rollup -c",
4545
"clean": "rimraf ./dist ./.cache",
4646
"hardhat:clean": "hardhat clean",

packages/http/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"scripts": {
4141
"version": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').name + '@' + require('./package.json').version) + ';'\" > src/version.ts",
42-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
42+
"prepublishOnly": "pnpm run clean && pnpm run build",
4343
"build": "rollup -c",
4444
"clean": "rimraf ./dist ./.cache",
4545
"test": "jest",

packages/iframe-stamper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"access": "public"
4141
},
4242
"scripts": {
43-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
43+
"prepublishOnly": "pnpm run clean && pnpm run build",
4444
"build": "rollup -c",
4545
"clean": "rimraf ./dist ./.cache",
4646
"test": "jest",

packages/react-native-passkey-stamper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"access": "public"
4444
},
4545
"scripts": {
46-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
46+
"prepublishOnly": "pnpm run clean && pnpm run build",
4747
"build": "rollup -c",
4848
"clean": "rimraf ./dist ./.cache",
4949
"test": "jest",

packages/sdk-browser/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
"version": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').name + '@' + require('./package.json').version) + ';'\" > src/__generated__/version.ts",
4242
"build": "rollup -c",
4343
"clean": "rimraf ./dist ./.cache",
44-
"typecheck": "tsc -p tsconfig.typecheck.json"
44+
"typecheck": "tsc -p tsconfig.typecheck.json",
45+
"prepublishOnly": "pnpm run clean && pnpm run build"
4546
},
4647
"dependencies": {
4748
"@turnkey/api-key-stamper": "workspace:*",

packages/sdk-react-native/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
"scripts": {
4242
"build": "rollup -c",
4343
"clean": "rimraf ./dist ./.cache",
44-
"typecheck": "tsc -p tsconfig.typecheck.json"
44+
"typecheck": "tsc -p tsconfig.typecheck.json",
45+
"prepublishOnly": "pnpm run clean && pnpm run build"
4546
},
4647
"engines": {
4748
"node": ">=18.0.0"

packages/sdk-react/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
"scripts": {
4646
"build": "rollup -c",
4747
"clean": "rimraf ./dist ./.cache",
48-
"typecheck": "tsc -p tsconfig.typecheck.json"
48+
"typecheck": "tsc -p tsconfig.typecheck.json",
49+
"prepublishOnly": "pnpm run clean && pnpm run build"
4950
},
5051
"dependencies": {
5152
"@emotion/react": "^11.13.3",

packages/sdk-server/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
"version": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').name + '@' + require('./package.json').version) + ';'\" > src/__generated__/version.ts",
4242
"build": "rollup -c",
4343
"clean": "rimraf ./dist ./.cache",
44-
"typecheck": "tsc -p tsconfig.typecheck.json"
44+
"typecheck": "tsc -p tsconfig.typecheck.json",
45+
"prepublishOnly": "pnpm run clean && pnpm run build"
4546
},
4647
"dependencies": {
4748
"@turnkey/api-key-stamper": "workspace:*",

packages/solana/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"access": "public"
4242
},
4343
"scripts": {
44-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
44+
"prepublishOnly": "pnpm run clean && pnpm run build",
4545
"build": "rollup -c",
4646
"clean": "rimraf ./dist ./.cache",
4747
"test": "DOTENV_CONFIG_PATH=.env.test jest --passWithNoTests",

packages/telegram-cloud-storage-stamper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"access": "public"
4242
},
4343
"scripts": {
44-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
44+
"prepublishOnly": "pnpm run clean && pnpm run build",
4545
"build": "rollup -c",
4646
"clean": "rimraf ./dist ./.cache",
4747
"test": "jest",

packages/viem/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"access": "public"
4444
},
4545
"scripts": {
46-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
46+
"prepublishOnly": "pnpm run clean && pnpm run build",
4747
"build": "rollup -c",
4848
"clean": "rimraf ./dist ./.cache",
4949
"test": "jest",

packages/wallet-stamper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"access": "public"
4242
},
4343
"scripts": {
44-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
44+
"prepublishOnly": "pnpm run clean && pnpm run build",
4545
"build": "rollup -c",
4646
"clean": "rimraf ./dist ./.cache",
4747
"test": "jest",

packages/webauthn-stamper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"access": "public"
4141
},
4242
"scripts": {
43-
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
43+
"prepublishOnly": "pnpm run clean && pnpm run build",
4444
"build": "rollup -c",
4545
"clean": "rimraf ./dist ./.cache",
4646
"test": "jest",

0 commit comments

Comments
 (0)