Skip to content

Commit

Permalink
Remove unnecessary TS_NODE_FILES flag
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rylnd committed Apr 29, 2019
1 parent 69e7310 commit 8ede428
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -6,11 +6,11 @@
"node": "9.4.x"
},
"scripts": {
"test": "TS_NODE_FILES=true mocha --exit",
"test": "mocha --exit",
"build": "tsc && npm run build:assets",
"build:assets": "cp -r {src,dist}/img",
"dev": "concurrently --kill-others --prefix=name --names=server,tslint --prefix-colors=green,magenta \"npm run dev:server\" \"npm run dev:lint\"",
"dev:server": "TS_NODE_FILES=true onchange -i -k 'src/**/*.ts' -- ts-node test/server.ts",
"dev:server": "onchange -i -k 'src/**/*.ts' -- ts-node test/server.ts",
"dev:lint": "onchange -i -k 'src/**/*.ts' -- tslint -t stylish 'src/**/*.ts'",
"prepublishOnly": "npm run build"
},
Expand Down

0 comments on commit 8ede428

Please sign in to comment.