Skip to content

Commit a5c4348

Browse files
committed
Moved linting step to test instead of build
1 parent 24562ed commit a5c4348

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
@@ -11,8 +11,8 @@
1111
],
1212
"scripts": {
1313
"build": "tsc -p tsconfig.json && npm run build-lualib",
14-
"build-lualib": "tslint -c ./tslint.json src/lualib/*.ts && ts-node ./build_lualib.ts",
15-
"test": "tslint -p . && ts-node ./test/runner.ts",
14+
"build-lualib": "ts-node ./build_lualib.ts",
15+
"test": "tslint -p . && tslint -c ./tslint.json src/lualib/*.ts && ts-node ./test/runner.ts",
1616
"coverage": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov",
1717
"coverage-html": "nyc npm test && nyc report --reporter=html",
1818
"test-threaded": "tslint -p . && npm run build && ts-node ./test/threaded_runner.ts",

0 commit comments

Comments
 (0)