Skip to content

Commit

Permalink
fix watch-build
Browse files Browse the repository at this point in the history
  • Loading branch information
Roaders committed Jun 26, 2023
1 parent 07f918e commit 8fc3ab0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../tsconfig.json",
"exclude": [
"dist"
"../dist"
],
"files": [
"index.ts"
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@
"copy": "copyfiles main/**/*.html main/**/*.css main/**/*.jpg dist",
"prebuild-release": "npm run clean && npm run verify-release",
"verify-release": "npm run build && concurrently --kill-others-on-fail npm:lint npm:test npm:test:jest",
"build-release": "npm run copy-dist && typedoc main/index.ts",
"watch-build": "tsc --watch",
"build-release": "typedoc main/index.ts",
"watch-build": "tsc --watch -p main/tsconfig.json",
"test": "karma start --singleRun --browsers ChromeHeadlessNoSandbox",
"test:karma": "karma start --singleRun --browsers ChromeHeadlessNoSandbox",
"test:jest": "jest",
"lint": "eslint . --ext .ts,.js",
"watch-test": "karma start --no-coverage",
"watch-test:jest": "jest --watch",
"copy-dist": "concurrently --kill-others-on-fail npm:copy-dist-*",
"watch-test-coverage": "karma start",
"lint:fix": "eslint . --ext .ts,.js --fix",
"compatibility-test": "npx tsc spec/ts-compat-test.ts --noEmit --skipLibCheck --watch"
Expand Down

0 comments on commit 8fc3ab0

Please sign in to comment.