summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-08-29 13:55:14 +0200
committerFlorian Dold <florian@dold.me>2023-08-29 13:55:14 +0200
commit5aa883b5d1f83f030741fc0ed53c26f965384001 (patch)
tree76cea19f540d5190adbdc1dad18315a2d4d80ce9 /packages
parentf86e23255a65d252e5aff52469cc2f417b0ac11c (diff)
downloadwallet-core-5aa883b5d1f83f030741fc0ed53c26f965384001.tar.gz
wallet-core-5aa883b5d1f83f030741fc0ed53c26f965384001.tar.bz2
wallet-core-5aa883b5d1f83f030741fc0ed53c26f965384001.zip
repo: make incremental builds faster, don't use TypeScript build mode
(build mode should not be necessary since pnpm handles dependencies inside the repo)
Diffstat (limited to 'packages')
-rw-r--r--packages/anastasis-cli/package.json2
-rw-r--r--packages/idb-bridge/package.json2
-rw-r--r--packages/pogen/package.json2
-rw-r--r--packages/taler-harness/package.json4
-rw-r--r--packages/taler-util/package.json2
-rw-r--r--packages/taler-wallet-cli/package.json4
-rw-r--r--packages/taler-wallet-core/package.json2
7 files changed, 9 insertions, 9 deletions
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",