Skip to content

Commit 334e629

Browse files
committed
fixed failing build
1 parent 11d0d0d commit 334e629

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

Diff for: .npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ webpack/
2121
node_modules/
2222

2323
# test
24+
dist/ts-build/test
2425
test/
2526
wct-test/
2627
wct.conf.json

Diff for: package.json

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"report": "nyc report --reporter=html",
2020
"example_library": "lite-server -c example_library/bs-config.json",
2121
"wct": "wct wct-test/json-forms.html",
22+
"publish-prerelease": "npm run build-all && npm run test && npm -no-git-tag-version version prereleasen && npm run commit-local && npm run push-tag && npm publish",
2223
"publish-patch": "npm run build-all && npm run test && npm -no-git-tag-version version patch && npm run commit-local && npm run push-tag && npm publish",
2324
"publish-minor": "npm run build-all && npm run test && npm -no-git-tag-version version minor && npm run commit-local && npm run push-tag && npm publish",
2425
"publish-major": "npm run build-all && npm run test && npm -no-git-tag-version version major && npm run commit-local && npm run push-tag && npm publish",

Diff for: tsconfig.json

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
"exclude":[
1515
"node_modules"
1616
],
17+
"include": [
18+
"./test/**/*"
19+
],
1720
"files": [
1821
"./src/index.ts"
1922
]

0 commit comments

Comments
 (0)