Skip to content

Commit

Permalink
Improve bundle error reporting with updated rollup. Fixes RocketChat#78
Browse files Browse the repository at this point in the history
  • Loading branch information
crucialfelix committed Nov 20, 2015
1 parent 7370b7b commit 152ea5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"gulp-less": "^3.0.3",
"gulp-util": "^3.0.6",
"q": "^1.4.1",
"rollup": "^0.16.1",
"rollup": "^0.21.0",
"tree-kill": "^0.1.1",
"yargs": "^3.15.0"
},
Expand Down
2 changes: 1 addition & 1 deletion tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ var bundle = function (src, dest) {
}).then(function () {
deferred.resolve();
}).catch(function (err) {
console.error(err);
console.error('build: Error during rollup', err.stack);
});

return deferred.promise;
Expand Down

0 comments on commit 152ea5f

Please sign in to comment.