Skip to content

Commit

Permalink
Update pdf.js to version 2.1.266; fix gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
libertyernie committed Apr 10, 2019
1 parent 160090c commit 36c4cd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ function preprocessDefaultPreferences(content) {
content + '\n');
}

gulp.task('seamonkey-pre', ['buildnumber', 'locale'], function () {
gulp.task('seamonkey-pre', gulp.series('buildnumber', 'locale', function () {
console.log();
console.log('### Building SeaMonkey extension');
var defines = builder.merge(DEFINES, { FIREFOX: true, SKIP_BABEL: true, });
Expand Down Expand Up @@ -878,9 +878,9 @@ gulp.task('seamonkey-pre', ['buildnumber', 'locale'], function () {
preprocessJS(FIREFOX_EXTENSION_DIR + 'bootstrap.js', defines, true)
.pipe(gulp.dest(SEAMONKEY_BUILD_DIR)),
]);
});
}));

gulp.task('seamonkey', ['seamonkey-pre'], function (done) {
gulp.task('seamonkey', gulp.series('seamonkey-pre', function (done) {
var FIREFOX_EXTENSION_FILES =
['bootstrap.js',
'install.rdf',
Expand Down Expand Up @@ -908,7 +908,7 @@ gulp.task('seamonkey', ['seamonkey-pre'], function (done) {
console.log('extension created: ' + FIREFOX_EXTENSION_NAME);
done();
});
});
}));

gulp.task('mozcentral-pre', gulp.series('buildnumber', 'locale', function () {
console.log();
Expand Down

0 comments on commit 36c4cd4

Please sign in to comment.