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 4e2334a commit a17c30fCopy full SHA for a17c30f
build-package.sh
@@ -3,7 +3,17 @@
3
# exit on any error
4
set -e
5
6
+# validate branches
7
. ./pre-check.sh
8
-tsc
9
+# pre-requisites
10
+npm run lint
11
+npm test
12
+
13
+# clean any old files
14
+npm run clean
15
+npm install
16
17
+# build
18
+npm run build
19
npm pack
tsconfig.json
@@ -10,6 +10,7 @@
"noLib": false,
"declaration": true,
"outDir": "dist",
+ "rootDir": "src",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
@@ -20,6 +21,7 @@
20
21
},
22
"exclude": [
23
"node_modules",
24
+ "src/*_test.ts",
25
"dist"
26
],
27
"include": [
0 commit comments