Revert "no need to compile after install"

This reverts commit c3ba7fb523.
This commit is contained in:
Florian Dold 2022-05-24 18:00:25 +02:00
parent 16cc179edf
commit 07e1818679
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
7 changed files with 9 additions and 1 deletions

View File

@ -6,6 +6,7 @@
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prepare": "tsc && rollup -c",
"compile": "tsc && rollup -c",
"pretty": "prettier --write src",
"test": "tsc && ava",
@ -39,4 +40,4 @@
"lib/**/*test.*"
]
}
}
}

View File

@ -11,6 +11,7 @@
"private": false,
"scripts": {
"test": "tsc && ava",
"prepare": "tsc && rollup -c",
"compile": "tsc && rollup -c",
"clean": "rimraf dist lib tsconfig.tsbuildinfo",
"pretty": "prettier --write src"

View File

@ -7,6 +7,7 @@
"author": "Florian Dold",
"license": "GPL-2.0+",
"scripts": {
"prepare": "tsc",
"compile": "tsc"
},
"devDependencies": {

View File

@ -22,6 +22,7 @@
"license": "AGPL-3.0-or-later",
"private": false,
"scripts": {
"prepare": "tsc",
"compile": "tsc",
"test": "tsc && ava",
"clean": "rimraf dist lib tsconfig.tsbuildinfo",

View File

@ -16,6 +16,7 @@
"taler-wallet-cli": "./bin/taler-wallet-cli"
},
"scripts": {
"prepare": "tsc && rollup -c",
"compile": "tsc && rollup -c",
"clean": "rimraf lib dist tsconfig.tsbuildinfo",
"pretty": "prettier --write src"

View File

@ -12,6 +12,7 @@
"author": "Florian Dold",
"license": "GPL-3.0",
"scripts": {
"prepare": "tsc && rollup -c",
"compile": "tsc && rollup -c",
"pretty": "prettier --write src",
"test": "tsc && ava",

View File

@ -13,6 +13,8 @@
"test:coverage": "nyc pnpm test",
"compile": "tsc && ./build-fast-with-linaria.mjs",
"dev": "./dev.mjs",
"compile:test": "rollup -c rollup.config.test.js -m",
"prepare": "rollup -c -m",
"pretty": "prettier --write src",
"i18n:extract": "pogen extract",
"i18n:merge": "pogen merge",