Simplify build scripts and implement preliminary tests

This commit is contained in:
hensm
2018-06-11 03:42:04 +01:00
parent 7cb626841f
commit f20f96cf10
19 changed files with 6021 additions and 11 deletions

14
package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"scripts": {
"postinstall": "npm run postinstall:app && npm run postinstall:ext",
"postinstall:app": "npm install ./app --prefix ./app",
"postinstall:ext": "npm install ./ext --prefix ./ext",
"build": "npm run build --prefix ./ext",
"pretest": "npm run build",
"test": "jasmine --config=jasmine.json"
},
"devDependencies": {
"jasmine": "^3.1.0",
"selenium-webdriver": "^4.0.0-alpha.1"
}
}