We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aca9ecd commit 10e833fCopy full SHA for 10e833f
1 file changed
package.json
@@ -50,7 +50,9 @@
50
"build": "run-s clean compile",
51
"clean": "run-p clean:*",
52
"clean:build": "rimraf ./lib",
53
- "compile": "tsc --build tsconfig.build.json",
+ "compile": "run-s compile:*",
54
+ "compile:lib": "tsc --build tsconfig.build.json",
55
+ "compile:check": "if [ ! -f lib/index.js ] || [ $(find lib -type f | wc -l) -le 30 ]; then echo 'File structure under lib is broken'; exit 1; fi",
56
"tsc:root-types": "node types-checks-filter-out-node_modules.js",
57
"test": "run-s test:*",
58
"test:tsc": "tsc --project tsconfig.json --noEmit --rootDir .",
0 commit comments