Skip to content

Commit

Permalink
try to fix npm run dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Rihyx committed Oct 25, 2024
1 parent a37cb61 commit 68424b5
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Moonbeam XCM builder",
"scripts": {
"build": "tsup",
"dev": "pnpm run build -- --watch",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "All necessary configuration to transfer assets from Moonbeam, Moonriver, Moonbase to other parachains and back",
"scripts": {
"build": "tsup",
"dev": "pnpm run build -- --watch",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
Expand Down
2 changes: 1 addition & 1 deletion packages/mrl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Moonbeam Routed Liquidity",
"scripts": {
"build": "tsup",
"dev": "pnpm run build -- --watch",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"prepack": "prettier --write build/index.d.ts"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "The Moonbeam XCM SDK enables developers to easily deposit and withdraw assets to Moonbeam/Moonriver from the relay chain and other parachains in the Polkadot/Kusama ecosystem",
"scripts": {
"build": "tsup",
"dev": "pnpm run build -- --watch",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test:acc": "vitest --run --testTimeout 300000 ./tests/acceptance",
"prepack": "prettier --write build/index.d.ts"
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Moonbeam XCM Types",
"scripts": {
"build": "tsup",
"dev": "pnpm run build -- --watch",
"dev": "tsup --watch",
"test": "vitest --run",
"test:watch": "vitest",
"test:update": "vitest -u",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Moonbeam XCM utilities",
"scripts": {
"build": "tsup",
"dev": "pnpm run build -- --watch",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
Expand Down
5 changes: 4 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"dependsOn": ["^build"]
},
"dev": {
"cache": false
"outputs": ["build/**"],
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"link": {
"cache": false
Expand Down

0 comments on commit 68424b5

Please sign in to comment.