Skip to content

Commit 02a27b2

Browse files
committed
Move things to the lib folder
1 parent e1aefae commit 02a27b2

File tree

5 files changed

+2
-2
lines changed

5 files changed

+2
-2
lines changed

β€Žindex.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const app = require('./server')()
1+
const app = require('./lib/server')()
22
const port = process.env.PORT || 3000
33
app.listen(port, () => {
44
console.log('Listening at http://localhost:' + port)
File renamed without changes.
File renamed without changes.

β€Žserver.js β€Žlib/server.js

File renamed without changes.

β€Žtests/server.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @jest-environment node
33
*/
44

5-
const createServer = require('../server')
5+
const createServer = require('../lib/server')
66
const request = require('supertest')
77
const EventSource = require('eventsource')
88
const Raven = require('raven')

0 commit comments

Comments
Β (0)