Build on test
This commit is contained in:
parent
8f2709ab55
commit
26001cadaf
2 changed files with 3 additions and 2 deletions
|
@ -9,7 +9,8 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node ./dist/server.js site/",
|
"start": "node ./dist/server.js site/",
|
||||||
"postinstall": "typings install",
|
"postinstall": "typings install",
|
||||||
"build": "tsc"
|
"build": "tsc",
|
||||||
|
"test": "npm run build"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "6.9.4"
|
"node": "6.9.4"
|
||||||
|
|
|
@ -15,6 +15,6 @@ export default function createServer(opts : Options) {
|
||||||
statusCode: 404
|
statusCode: 404
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
return app;
|
return app;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue