Skip to content

Commit

Permalink
Merge pull request #172 from kyuumeitai/master
Browse files Browse the repository at this point in the history
hotfix: noop callbacks for the createAndSave function solves #171
  • Loading branch information
sudodoki committed Jun 18, 2017
2 parents d4836e4 + 287f5c7 commit aeca2a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/cleaver
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ 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 +126,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 aeca2a3

Please sign in to comment.