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 633576d commit 1643853Copy full SHA for 1643853
.gitignore
@@ -1,3 +1,5 @@
1
.DS_Store
2
3
+/lib
4
+
5
node_modules
package.json
@@ -24,7 +24,7 @@
24
"prepare": "npm run build",
25
"prepublishOnly": "npm test && npm run lint",
26
"preversion": "npm run lint",
27
- "build": "tsc",
+ "build": "tsc && ./node_modules/.bin/ncc build lib/index.js --license licenses.txt",
28
"release": "./node_modules/.bin/standard-version && git push --follow-tags",
29
"test": "jest",
30
"format": "prettier --write \"src/**/*.ts\"",
tsconfig.json
@@ -7,7 +7,7 @@
7
"allowSyntheticDefaultImports": true,
8
"strict": true,
9
"moduleResolution": "node",
10
- "outDir": "./dist",
+ "outDir": "./lib"
11
},
12
"ts-node": {
13
"files": true
0 commit comments