Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade rollup and plugins to fix the build #6493

Merged
merged 1 commit into from Sep 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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