Skip to content

Commit

Permalink
Upgrade rollup and plugins to fix build (#6493)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann authored and etimberg committed Sep 4, 2019
1 parent 2954cf8 commit f68b8ad
Show file tree
Hide file tree
Showing 5 changed files with 12,764 additions and 11 deletions.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -6,7 +6,6 @@
/gh-pages
/jsdoc
/node_modules
/package-lock.json
.DS_Store
.idea
.project
Expand Down
5 changes: 3 additions & 2 deletions gulpfile.js
Expand Up @@ -39,7 +39,8 @@ function run(bin, args, done) {
return new Promise(function(resolve, reject) {
var exe = '"' + process.execPath + '"';
var src = require.resolve(bin);
var ps = exec([exe, src].concat(args || []).join(' '));
var cmd = [exe, src].concat(args || []).join(' ');
var ps = exec(cmd);

ps.stdout.pipe(process.stdout);
ps.stderr.pipe(process.stderr);
Expand Down Expand Up @@ -80,7 +81,7 @@ function bowerTask() {
}

function buildTask() {
return run('rollup/bin/rollup', ['-c', argv.watch ? '--watch' : '']);
return run('rollup/dist/bin/rollup', ['-c', argv.watch ? '--watch' : '']);
}

function packageTask() {
Expand Down

0 comments on commit f68b8ad

Please sign in to comment.