Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit 18ccdb4

Browse files
authored
Merge pull request #115 from codeoverflow-org/feature/ts-build-mode
Use typescript build mode for incremental compilation
2 parents 487549e + cd18620 commit 18ccdb4

File tree

42 files changed

+126
-83
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+126
-83
lines changed

nodecg-io-ahk/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"url": "https://github.com/derNiklaas"
99
},
1010
"scripts": {
11-
"build": "tsc",
12-
"watch": "tsc -w"
11+
"build": "tsc -b",
12+
"watch": "tsc -b -w",
13+
"clean": "tsc -b --clean"
1314
},
1415
"keywords": [
1516
"",

nodecg-io-core/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"url": "http://codeoverflow.org"
99
},
1010
"scripts": {
11-
"build": "tsc",
12-
"watch": "tsc -w"
11+
"build": "tsc -b",
12+
"watch": "tsc -b -w",
13+
"clean": "tsc -b --clean"
1314
},
1415
"keywords": [
1516
"",

nodecg-io-discord/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"url": "https://github.com/noeppi-noeppi"
99
},
1010
"scripts": {
11-
"build": "tsc",
12-
"watch": "tsc -w"
11+
"build": "tsc -b",
12+
"watch": "tsc -b -w",
13+
"clean": "tsc -b --clean"
1314
},
1415
"keywords": [
1516
"",

nodecg-io-intellij/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"url": "https://github.com/noeppi-noeppi"
99
},
1010
"scripts": {
11-
"build": "tsc",
12-
"watch": "tsc -w"
11+
"build": "tsc -b",
12+
"watch": "tsc -b -w",
13+
"clean": "tsc -b --clean"
1314
},
1415
"keywords": [
1516
"",

nodecg-io-irc/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"url": "https://github.com/ExtremTechniker"
99
},
1010
"scripts": {
11-
"build": "tsc",
12-
"watch": "tsc -w"
11+
"build": "tsc -b",
12+
"watch": "tsc -b -w",
13+
"clean": "tsc -b --clean"
1314
},
1415
"keywords": [
1516
"",

nodecg-io-midi-input/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"url": "https://github.com/noeppi-noeppi"
99
},
1010
"scripts": {
11-
"build": "tsc",
12-
"watch": "tsc -w"
11+
"build": "tsc -b",
12+
"watch": "tsc -b -w",
13+
"clean": "tsc -b --clean"
1314
},
1415
"keywords": [
1516
"",

nodecg-io-midi-output/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"url": "https://github.com/noeppi-noeppi"
99
},
1010
"scripts": {
11-
"build": "tsc",
12-
"watch": "tsc -w"
11+
"build": "tsc -b",
12+
"watch": "tsc -b -w",
13+
"clean": "tsc -b --clean"
1314
},
1415
"keywords": [
1516
"",

nodecg-io-obs/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
"homepage": "",
66
"contributor": "derNiklaas",
77
"scripts": {
8-
"build": "tsc",
9-
"watch": "tsc -w"
8+
"build": "tsc -b",
9+
"watch": "tsc -b -w",
10+
"clean": "tsc -b --clean"
1011
},
1112
"files": [
1213
"dashboard",

nodecg-io-philipshue/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"url": "https://thecrether.at"
99
},
1010
"scripts": {
11-
"build": "tsc",
12-
"watch": "tsc -w"
11+
"build": "tsc -b",
12+
"watch": "tsc -b -w",
13+
"clean": "tsc -b --clean"
1314
},
1415
"keywords": [
1516
"nodecg-bundle"

nodecg-io-rcon/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"url": "https://github.com/derNiklaas"
99
},
1010
"scripts": {
11-
"build": "tsc",
12-
"watch": "tsc -w"
11+
"build": "tsc -b",
12+
"watch": "tsc -b -w",
13+
"clean": "tsc -b --clean"
1314
},
1415
"keywords": [
1516
"",

0 commit comments

Comments
 (0)