We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b443033 commit 234460cCopy full SHA for 234460c
1 file changed
package.json
@@ -6,8 +6,9 @@
6
"bin": "./build/src/index.js",
7
"main": "index.js",
8
"scripts": {
9
- "clean": "node -e \"require('fs').rmSync('build', {recursive: true, force: true})\"",
10
- "build": "npm run clean && tsc && node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/post-build.ts && rollup -c rollup.config.mjs",
+ "clean": "node -e \"require('fs').rmSync('build/src/third_party', {recursive: true, force: true})\"",
+ "clean:3p": "node -e \"require('fs').rmSync('build', {recursive: true, force: true})\"",
11
+ "build": "npm run clean:3p && tsc && node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/post-build.ts && rollup -c rollup.config.mjs",
12
"typecheck": "tsc --noEmit",
13
"format": "eslint --cache --fix . && prettier --write --cache .",
14
"check-format": "eslint --cache . && prettier --check --cache .;",
0 commit comments