Move shell.js and environment.js to shell/

This commit is contained in:
David Humphrey (:humph) david.humphrey@senecacollege.ca 2014-03-18 16:41:31 -04:00
parent a28feae506
commit bf22cad14d
3 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ define(function(require) {
var providers = require('src/providers/providers');
var adapters = require('src/adapters/adapters');
var Shell = require('src/shell');
var Shell = require('src/shell/shell');
var Intercom = require('intercom');
var FSWatcher = require('src/fs-watcher');
var Errors = require('src/errors');

View File

@ -3,7 +3,7 @@ define(function(require) {
var Path = require('src/path');
var Errors = require('src/errors');
var Environment = require('src/environment');
var Environment = require('src/shell/environment');
var async = require('async');
function Shell(fs, options) {