archive
/
tstatic
Archived
1
Fork 0

Build on test

This commit is contained in:
Jake Howard 2017-02-14 22:21:08 +00:00
parent 8f2709ab55
commit 26001cadaf
2 changed files with 3 additions and 2 deletions

View File

@ -9,7 +9,8 @@
"scripts": {
"start": "node ./dist/server.js site/",
"postinstall": "typings install",
"build": "tsc"
"build": "tsc",
"test": "npm run build"
},
"engines": {
"node": "6.9.4"

View File

@ -15,6 +15,6 @@ export default function createServer(opts : Options) {
statusCode: 404
}));
}
return app;
}