Skip to content

Commit 8ede428

Browse files
committed
Remove unnecessary TS_NODE_FILES flag
We were using this to pick up our global types in index.d.ts. Now that those types have been moved inline, we don't need this.
1 parent 69e7310 commit 8ede428

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"node": "9.4.x"
77
},
88
"scripts": {
9-
"test": "TS_NODE_FILES=true mocha --exit",
9+
"test": "mocha --exit",
1010
"build": "tsc && npm run build:assets",
1111
"build:assets": "cp -r {src,dist}/img",
1212
"dev": "concurrently --kill-others --prefix=name --names=server,tslint --prefix-colors=green,magenta \"npm run dev:server\" \"npm run dev:lint\"",
13-
"dev:server": "TS_NODE_FILES=true onchange -i -k 'src/**/*.ts' -- ts-node test/server.ts",
13+
"dev:server": "onchange -i -k 'src/**/*.ts' -- ts-node test/server.ts",
1414
"dev:lint": "onchange -i -k 'src/**/*.ts' -- tslint -t stylish 'src/**/*.ts'",
1515
"prepublishOnly": "npm run build"
1616
},

0 commit comments

Comments
 (0)