Skip to content

Commit

Permalink
Fix build config
Browse files Browse the repository at this point in the history
  • Loading branch information
emonkak committed Dec 17, 2016
1 parent f44c1b4 commit a9874f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"description": "Provides the individual methods of LINQ as a module",
"main": "index.js",
"scripts": {
"build": "tsc --declaration --rootDir src && cp LICENSE README.md package.json dist/",
"build": "tsc --declaration && cp LICENSE README.md package.json dist/src/",
"cover": "nyc npm test",
"lint": "tslint 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rm -fr dist",
"precover": "rm -fr .nyc_output coverage",
"prebuild": "rm -f -r dist",
"precover": "rm -f -r .nyc_output coverage",
"test": "mocha --recursive --compilers ts:ts-node/register",
"watch": "tsc --watch"
},
Expand Down
3 changes: 0 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,5 @@
},
"exclude": [
"node_modules"
],
"include": [
"src/**/*.ts"
]
}

0 comments on commit a9874f5

Please sign in to comment.