Skip to content

Commit 1320039

Browse files
author
kamil.mysliwiec
committed
Travis hotfix
1 parent 3415ece commit 1320039

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

example/server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ApplicationModule } from './modules/app.module';
44
const port = 3001;
55
const app = NestFactory.create(ApplicationModule);
66

7-
const server = app.listen(port, () => {
7+
app.listen(port, () => {
88
console.log('Application listen on port:', port);
9-
server.close();
9+
process.exit();
1010
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nest.js",
3-
"version": "1.0.0-alpha-14",
3+
"version": "1.0.0-alpha-20",
44
"description": "Modern, fast, powerful node.js web framework",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)