Skip to content

Commit

Permalink
hotfix: noop callbacks for the createAndSave function solves jdan#171
Browse files Browse the repository at this point in the history
  • Loading branch information
kyuumeitai committed Jun 14, 2017
1 parent d4836e4 commit 2e4f088
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/cleaver
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ program
var file = program.args[0];
var options = getOptions();
options.watch = true;
createAndSave([file], options);
createAndSave([file], options, function() {

});

var port = 35729;
tinylr().listen(port, function() {
Expand Down Expand Up @@ -126,7 +128,7 @@ program
// Reload cleaver with the new ENV for debugging
// TODO: This seems a little janky, maybe handle this in lib/
Cleaver = require('../');
createAndSave(files, getOptions());
createAndSave(files, getOptions(), function(){});
});

program
Expand Down

0 comments on commit 2e4f088

Please sign in to comment.