Fixed import const statement

This commit is contained in:
trowacat 2019-01-25 09:09:05 -05:00
parent 8a86cf73b2
commit 6b6a359b8a
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ const nop = require('../shared.js').nop;
const providers = require('../providers/index.js');
const Constants = require('../constants.js');
const Shell = require('../shell/shell.js');
const Intercom = require('../../lib/intercom.js');
const FSWatcher = require('../fs-watcher.js');
@ -23,7 +24,7 @@ const {
STDIN,
STDOUT,
STDERR
} = require('../constants.js');
} = Constants;
// The core fs operations live on impl
const impl = require('./implementation.js');