Skip to content

Commit

Permalink
Incremental compile ts
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-finley committed Jul 8, 2020
1 parent e1a9188 commit 48cc8f3
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ dist/
node_modules/
local/
ui/*/npm-debug.log
ui/*/tsconfig.tsbuildinfo
hs_*.log
yarn-error.log

Expand Down
2 changes: 1 addition & 1 deletion ui/ceval/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"author": "Thibault Duplessis",
"license": "AGPL-3.0-or-later",
"scripts": {
"compile": "../../node_modules/typescript/bin/tsc",
"compile": "../../node_modules/typescript/bin/tsc --incremental",
"dev": "yarn run compile",
"prod": "yarn run compile"
},
Expand Down
2 changes: 1 addition & 1 deletion ui/chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"author": "Thibault Duplessis",
"license": "AGPL-3.0-or-later",
"scripts": {
"compile": "../../node_modules/typescript/bin/tsc --outDir ./dist --declaration --inlineSourceMap",
"compile": "../../node_modules/typescript/bin/tsc --incremental --outDir ./dist --declaration --inlineSourceMap",
"dev": "yarn run compile && rollup --config",
"prod": "yarn run compile && rollup --config --config-prod"
},
Expand Down
2 changes: 1 addition & 1 deletion ui/chess/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"author": "Thibault Duplessis",
"license": "AGPL-3.0-or-later",
"scripts": {
"compile": "../../node_modules/typescript/bin/tsc",
"compile": "../../node_modules/typescript/bin/tsc --incremental",
"dev": "yarn run compile",
"prod": "yarn run compile"
},
Expand Down
2 changes: 1 addition & 1 deletion ui/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "Thibault Duplessis",
"license": "AGPL-3.0-or-later",
"scripts": {
"compile": "../../node_modules/typescript/bin/tsc",
"compile": "../../node_modules/typescript/bin/tsc --incremental",
"dev": "yarn run compile",
"prod": "yarn run compile"
},
Expand Down
2 changes: 1 addition & 1 deletion ui/game/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"author": "Thibault Duplessis",
"license": "AGPL-3.0-or-later",
"scripts": {
"compile": "../../node_modules/typescript/bin/tsc",
"compile": "../../node_modules/typescript/bin/tsc --incremental",
"dev": "yarn run compile",
"prod": "yarn run compile"
},
Expand Down
2 changes: 1 addition & 1 deletion ui/nvui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"author": "Thibault Duplessis",
"license": "AGPL-3.0-or-later",
"scripts": {
"compile": "../../node_modules/typescript/bin/tsc",
"compile": "../../node_modules/typescript/bin/tsc --incremental",
"dev": "yarn run compile",
"prod": "yarn run compile"
},
Expand Down
2 changes: 1 addition & 1 deletion ui/tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"author": "Thibault Duplessis",
"license": "AGPL-3.0-or-later",
"scripts": {
"compile": "../../node_modules/typescript/bin/tsc",
"compile": "../../node_modules/typescript/bin/tsc --incremental",
"dev": "yarn run compile",
"prod": "yarn run compile"
},
Expand Down

0 comments on commit 48cc8f3

Please sign in to comment.