rm code that doesn't seem to be doing anything (after much investigation)

This commit is contained in:
Michael Bradley, Jr 2018-07-19 20:50:46 -05:00 committed by Iuri Matias
parent 7ea7234024
commit fd2056da8e
1 changed files with 0 additions and 8 deletions

View File

@ -15,10 +15,6 @@ class WebpackProcess extends ProcessWrapper {
let realCwd;
async.waterfall([
function findImports(next) {
self.webpackRun(file.filename, {}, false, importsList, false, realCwd, next);
},
function changeCwd(next) {
realCwd = utils.pwd();
process.chdir(fs.embarkPath(''));
@ -39,7 +35,6 @@ class WebpackProcess extends ProcessWrapper {
});
}
webpackRun(filename, options, includeModules, importsList, detectErrors, realCwd, callback) {
let defaultOptions = {
entry: fs.dappPath(filename),
@ -55,9 +50,6 @@ class WebpackProcess extends ProcessWrapper {
fs.dappPath('node_modules')
]
},
externals: function (context, request, callback) {
callback();
},
plugins: [
new HardSourceWebpackPlugin({
cacheDirectory: fs.dappPath('node_modules/.cache/hard-source'),