diff options
author | Florian Dold <florian@dold.me> | 2023-06-06 15:30:19 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2023-06-06 15:30:37 +0200 |
commit | 8671dc37c88e73aab54d7528a89345475ca3a85a (patch) | |
tree | 4cc39d7c4b8a4eabb300671273ad6033ae9b5c1b /packages/taler-wallet-cli/package.json | |
parent | f56a563533e28b27affc098ccff77ae4cc60e509 (diff) |
build system: use --build argument for tsc
Diffstat (limited to 'packages/taler-wallet-cli/package.json')
-rw-r--r-- | packages/taler-wallet-cli/package.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-cli/package.json b/packages/taler-wallet-cli/package.json index 55f9adecb..aaf921ef6 100644 --- a/packages/taler-wallet-cli/package.json +++ b/packages/taler-wallet-cli/package.json @@ -16,7 +16,7 @@ }, "type": "module", "scripts": { - "compile": "./build-node.mjs", + "compile": "tsc --build && ./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 +} |