From 5076e2297457d02d0826f8623a6f80265a68dcd6 Mon Sep 17 00:00:00 2001 From: mmaurello Date: Fri, 25 Oct 2024 16:23:31 +0200 Subject: [PATCH] Revert "imporve dev mode" This reverts commit 9d135c88fc2f810353c194de16b08a939a7b84df. --- packages/builder/package.json | 2 +- packages/config/package.json | 2 +- packages/mrl/package.json | 2 +- packages/sdk/package.json | 2 +- packages/types/package.json | 2 +- packages/utils/package.json | 2 +- turbo.json | 3 +-- 7 files changed, 7 insertions(+), 8 deletions(-) diff --git a/packages/builder/package.json b/packages/builder/package.json index 3f5fe8a6..14ba345c 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -4,7 +4,7 @@ "description": "Moonbeam XCM builder", "scripts": { "build": "tsup", - "dev": "tsup --watch", + "dev": "pnpm run build -- --watch", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", diff --git a/packages/config/package.json b/packages/config/package.json index 3753a617..8d67c9e0 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -4,7 +4,7 @@ "description": "All necessary configuration to transfer assets from Moonbeam, Moonriver, Moonbase to other parachains and back", "scripts": { "build": "tsup", - "dev": "tsup --watch", + "dev": "pnpm run build -- --watch", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", diff --git a/packages/mrl/package.json b/packages/mrl/package.json index 3a84588b..3be6de5b 100644 --- a/packages/mrl/package.json +++ b/packages/mrl/package.json @@ -4,7 +4,7 @@ "description": "Moonbeam Routed Liquidity", "scripts": { "build": "tsup", - "dev": "tsup --watch", + "dev": "pnpm run build -- --watch", "typecheck": "tsc --noEmit", "prepack": "prettier --write build/index.d.ts" }, diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 4c6e2328..cfc54326 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -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": "tsup --watch", + "dev": "pnpm run build -- --watch", "typecheck": "tsc --noEmit", "test:acc": "vitest --run --testTimeout 300000 ./tests/acceptance", "prepack": "prettier --write build/index.d.ts" diff --git a/packages/types/package.json b/packages/types/package.json index 522166fe..0988a403 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -4,7 +4,7 @@ "description": "Moonbeam XCM Types", "scripts": { "build": "tsup", - "dev": "tsup --watch", + "dev": "pnpm run build -- --watch", "test": "vitest --run", "test:watch": "vitest", "test:update": "vitest -u", diff --git a/packages/utils/package.json b/packages/utils/package.json index a655149d..1e955efa 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -4,7 +4,7 @@ "description": "Moonbeam XCM utilities", "scripts": { "build": "tsup", - "dev": "tsup --watch", + "dev": "pnpm run build -- --watch", "typecheck": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", diff --git a/turbo.json b/turbo.json index 92657dd8..251e6da8 100644 --- a/turbo.json +++ b/turbo.json @@ -6,8 +6,7 @@ "dependsOn": ["^build"] }, "dev": { - "cache": false, - "persistent": true + "cache": false }, "link": { "cache": false