We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7307c8 commit 79c466fCopy full SHA for 79c466f
.npmignore
@@ -1,2 +1,3 @@
1
*
2
!dist/**/*
3
+dist/tests/
package.json
@@ -10,7 +10,7 @@
10
"pkg-win": "pkg dist/index.js --public -t win-x64 -o bin/win/gitlab-ci-local && gzip -c bin/win/gitlab-ci-local.exe > bin/win.gz",
11
"pkg-all": "npm run pkg-linux && npm run pkg-macos && npm run pkg-win",
12
"pkg": "pkg",
13
- "build": "tsc",
+ "build": "rm -rf dist/ && tsc",
14
"check-all": "npm run build && npm run lint && npm run ncu && npm run test:coverage && npm audit --parseable",
15
"lint": "eslint .",
16
"ncu": "ncu --target latest -e 2",
@@ -32,6 +32,9 @@
32
"assets": [
33
"package.json"
34
],
35
+ "scripts": [
36
+ "dist/*.js"
37
+ ],
38
"targets": [
39
"node14"
40
]
0 commit comments