Remove prebuild step

This commit is contained in:
Daniel Imms
2019-05-26 13:17:57 -07:00
parent 6ec3a5c1d8
commit be11b4fc53
2 changed files with 3 additions and 4 deletions
+3 -3
View File
@@ -18,8 +18,8 @@ const args = [
'./lib/**/*test.js'
];
cp.spawnSync('./node_modules/.bin/mocha', args, {
cp.spawnSync(path.resolve(__dirname, '../node_modules/.bin/mocha'), args, {
cwd: path.resolve(__dirname, '..'),
stdio: 'inherit',
env
env,
stdio: 'inherit'
});
-1
View File
@@ -44,7 +44,6 @@
"test": "node ./bin/test.js",
"posttest": "npm run lint",
"test-api": "mocha \"**/*.api.js\"",
"prebuild": "tsc -b ./src/tsconfig.all.json",
"build": "tsc -b ./src/tsconfig.all.json",
"prepare": "npm run build",
"prepublishOnly": "npm run package",