Skip to content

Commit

Permalink
Minor fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
John McLaughlin committed Mar 24, 2016
1 parent 2f3c8ae commit 16f8edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ function Webpack() {
};
relativeSourceFiles(ins.models);
relativeSourceFiles(ins.components);
var middleware = ins.middleware && ins.middleware.middleware;
relativeSourceFiles(middleware);
var bootFiles = ins.files && ins.files.boot;
if(bootFiles)
bootFiles = ins.files.boot = bootFiles.map(relative);
var middleware = ins.middleware && ins.middleware.middleware;

var instructionsFile = temp.openSync({prefix: 'boot-instructions-', suffix: '.json'});
fs.writeSync(instructionsFile.fd, JSON.stringify(ins, null, argv.saveInstructions && '\t'));
Expand Down

0 comments on commit 16f8edd

Please sign in to comment.