Skip to content

Commit

Permalink
Build all of src/, not just src/rules/ (palantir#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkillian authored and adidahiya committed Jun 15, 2016
1 parent 4ba221d commit c350853
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -15,7 +15,7 @@
"lint": "tslint 'src/**/*.ts'",
"preversion": "npm-run-all clean test copy",
"test": "npm-run-all build test-rules",
"test-rules": "for path in ./test/rules/*; do tslint -r ./build/ --test $path; done"
"test-rules": "for path in ./test/rules/*; do tslint -r ./build/rules/ --test $path; done"
},
"devDependencies": {
"colors": "^1.1.2",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Expand Up @@ -6,7 +6,7 @@
"declaration": true,
"sourceMap": false,
"target": "es5",
"rootDir": "src/rules/",
"rootDir": "src/",
"outDir": "build/"
},
"exclude": [
Expand Down

0 comments on commit c350853

Please sign in to comment.