Skip to content

Commit cb841aa

Browse files
committed
fix types package build
1 parent 734b382 commit cb841aa

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"scrub": "npx rimraf **/dist dist",
99
"build": "run-s build:types build:packages",
1010
"build:wasm": "make sdk-wasm-build",
11-
"build:types": "pnpm run --filter --stream @nymproject/types build ",
11+
"build:types": "pnpm run --filter @nymproject/types --stream build",
1212
"build:packages": "run-s build:packages:theme build:packages:react",
1313
"build:packages:theme": "pnpm run --filter @nymproject/mui-theme build",
1414
"build:packages:react": "pnpm run --filter @nymproject/react build",
@@ -19,7 +19,7 @@
1919
"prebuild:ci": "pnpm run dev:on",
2020
"build:ci": "pnpm dlx npm-run-all build:types build:packages build:wasm build:ci:sdk",
2121
"postbuild:ci": "pnpm run dev:off",
22-
"build:ci:sdk": "pnpm run --fitler --stream '{@nymproject/sdk,@nymproject/node-tester,@nymproject/contract-clients,@nymproject/sdk-react,@nymproject/mix-fetch,@nymproject/nodejs-client,@nymproject/mix-fetch-node}' build",
22+
"build:ci:sdk": "pnpm run --filter '{@nymproject/sdk,@nymproject/node-tester,@nymproject/contract-clients,@nymproject/sdk-react,@nymproject/mix-fetch,@nymproject/nodejs-client,@nymproject/mix-fetch-node}' --stream build",
2323
"docs:prod:build": "run-s docs:prod:build:ws",
2424
"docs:prod:build:ws": "pnpm run --stream docs:prod:build",
2525
"sdk:build": "./sdk/typescript/scripts/build-prod-sdk.sh",

pnpm-lock.yaml

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ packages:
55
- sdk/typescript/packages/mui-theme
66
- sdk/typescript/packages/react-components
77
- sdk/typescript/packages/validator-client
8-
- ts-packages/*
8+
- ts-packages/**
99
- nym-wallet
1010
- explorer-nextjs
1111
- types

ts-packages/types/package.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@
66
"types": "dist/index.d.ts",
77
"peerDependencies": {
88
"@cosmjs/math": "^0.27.1",
9-
"bs58": "4",
10-
"bech32": "^1.1.4"
9+
"bech32": "^1.1.4",
10+
"bs58": "4"
1111
},
1212
"devDependencies": {
1313
"@nymproject/eslint-config-react-typescript": "workspace:1.0.0",
14+
"@types/bs58": "^4.0.1",
1415
"@typescript-eslint/eslint-plugin": "^5.13.0",
1516
"@typescript-eslint/parser": "^5.13.0",
17+
"babel-plugin-root-import": "^5.1.0",
18+
"bs58": "^4.0.1",
1619
"eslint": "^8.10.0",
1720
"eslint-config-airbnb": "^19.0.4",
1821
"eslint-config-airbnb-typescript": "^16.1.0",
@@ -24,12 +27,11 @@
2427
"eslint-plugin-prettier": "^4.0.0",
2528
"eslint-plugin-react": "^7.29.2",
2629
"eslint-plugin-react-hooks": "^4.3.0",
30+
"jest": "^27.1.0",
2731
"prettier": "^2.8.7",
28-
"typescript": "^4.6.2",
32+
"rimraf": "^3.0.2",
2933
"ts-jest": "^27.0.5",
30-
"jest": "^27.1.0",
31-
"babel-plugin-root-import": "^5.1.0",
32-
"rimraf": "^3.0.2"
34+
"typescript": "^4.6.2"
3335
},
3436
"scripts": {
3537
"clean": "rimraf dist",

0 commit comments

Comments
 (0)