Skip to content

Commit

Permalink
Issue #73: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
stil4m committed Jun 13, 2017
1 parent 7b43b19 commit 5be2e00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion js/server/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ module.exports = function(config) {

const elm = require('./worker')(config);
const dashboard = require('./dashboard')(app, elm, expressWs);
const watcher = require('./watcher')(app, elm);

require('./watcher')(app, elm);
require('./control')(app, elm, expressWs);

app.get('/file', function(req, res) {
Expand Down
2 changes: 1 addition & 1 deletion js/server/watcher.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var watch = require("node-watch");
var watch = require('node-watch');

module.exports = function(app, elmWorker) {
const pack = require(process.cwd() + '/elm-package.json');
Expand Down

0 comments on commit 5be2e00

Please sign in to comment.