From 5aa883b5d1f83f030741fc0ed53c26f965384001 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 29 Aug 2023 13:55:14 +0200 Subject: repo: make incremental builds faster, don't use TypeScript build mode (build mode should not be necessary since pnpm handles dependencies inside the repo) --- packages/anastasis-cli/package.json | 2 +- packages/idb-bridge/package.json | 2 +- packages/pogen/package.json | 2 +- packages/taler-harness/package.json | 4 ++-- packages/taler-util/package.json | 2 +- packages/taler-wallet-cli/package.json | 4 ++-- packages/taler-wallet-core/package.json | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) (limited to 'packages') diff --git a/packages/anastasis-cli/package.json b/packages/anastasis-cli/package.json index 1821cd696..2bbf32c3b 100644 --- a/packages/anastasis-cli/package.json +++ b/packages/anastasis-cli/package.json @@ -16,7 +16,7 @@ }, "type": "module", "scripts": { - "compile": "tsc --build && ./build-node.mjs", + "compile": "tsc && ./build-node.mjs", "test": "tsc", "clean": "rimraf lib dist tsconfig.tsbuildinfo", "pretty": "prettier --write src" diff --git a/packages/idb-bridge/package.json b/packages/idb-bridge/package.json index 2677c302f..1c9c46b02 100644 --- a/packages/idb-bridge/package.json +++ b/packages/idb-bridge/package.json @@ -11,7 +11,7 @@ "private": false, "scripts": { "test": "tsc && ava", - "compile": "tsc --build", + "compile": "tsc", "clean": "rimraf dist lib tsconfig.tsbuildinfo", "pretty": "prettier --write src" }, diff --git a/packages/pogen/package.json b/packages/pogen/package.json index c5252cd62..ae1dfac3b 100644 --- a/packages/pogen/package.json +++ b/packages/pogen/package.json @@ -7,7 +7,7 @@ "author": "Florian Dold", "license": "GPL-2.0+", "scripts": { - "compile": "tsc --build" + "compile": "tsc" }, "devDependencies": { "po2json": "^0.4.5", diff --git a/packages/taler-harness/package.json b/packages/taler-harness/package.json index 435ff8a59..8916e5e9e 100644 --- a/packages/taler-harness/package.json +++ b/packages/taler-harness/package.json @@ -16,7 +16,7 @@ }, "type": "module", "scripts": { - "compile": "tsc --build && ./build.mjs", + "compile": "tsc && ./build.mjs", "check": "tsc", "test": "tsc", "clean": "rimraf lib dist tsconfig.tsbuildinfo", @@ -42,4 +42,4 @@ "@gnu-taler/taler-wallet-core": "workspace:*", "tslib": "^2.5.3" } -} \ No newline at end of file +} diff --git a/packages/taler-util/package.json b/packages/taler-util/package.json index 504b8259f..6ac9a2689 100644 --- a/packages/taler-util/package.json +++ b/packages/taler-util/package.json @@ -57,7 +57,7 @@ } }, "scripts": { - "compile": "tsc --build", + "compile": "tsc", "test": "tsc && ava", "clean": "rimraf dist lib tsconfig.tsbuildinfo", "pretty": "prettier --write src" diff --git a/packages/taler-wallet-cli/package.json b/packages/taler-wallet-cli/package.json index 36201759e..06df1da76 100644 --- a/packages/taler-wallet-cli/package.json +++ b/packages/taler-wallet-cli/package.json @@ -16,7 +16,7 @@ }, "type": "module", "scripts": { - "compile": "tsc --build && ./build-node.mjs", + "compile": "tsc && ./build-node.mjs", "test": "tsc", "clean": "rimraf lib dist tsconfig.tsbuildinfo", "pretty": "prettier --write src" @@ -41,4 +41,4 @@ "@gnu-taler/taler-wallet-core": "workspace:*", "tslib": "^2.5.3" } -} \ No newline at end of file +} diff --git a/packages/taler-wallet-core/package.json b/packages/taler-wallet-core/package.json index c471770de..9cd6f6466 100644 --- a/packages/taler-wallet-core/package.json +++ b/packages/taler-wallet-core/package.json @@ -12,7 +12,7 @@ "author": "Florian Dold", "license": "GPL-3.0", "scripts": { - "compile": "tsc --build", + "compile": "tsc", "pretty": "prettier --write src", "test": "tsc && ava", "coverage": "tsc && c8 --src src --all ava", -- cgit v1.2.3