Skip to content

Commit

Permalink
Update gulpfile to refer to new default prefs generation
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacSchemm committed Aug 22, 2019
1 parent 8dd9d0a commit 265ad54
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion extensions/seamonkey/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Cu.import("resource://gre/modules/Services.jsm");
function initializeDefaultPreferences() {
/* eslint-disable semi */
var DEFAULT_PREFERENCES =
//#include ../../web/default_preferences.json
//#include ../../build/default_preferences.json
//#if false
"end of DEFAULT_PREFERENCES"
//#endif
Expand Down
2 changes: 1 addition & 1 deletion extensions/seamonkey/content/PdfjsChromeUtils.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ XPCOMUtils.defineLazyServiceGetter(Svc, "mime",

/* eslint-disable semi */
var DEFAULT_PREFERENCES =
//#include ../../../web/default_preferences.json
//#include ../../../build/default_preferences.json
//#if false
"end of DEFAULT_PREFERENCES"
//#endif
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ function preprocessDefaultPreferences(content) {
content + '\n');
}

gulp.task('seamonkey-pre', gulp.series('buildnumber', 'locale', function () {
gulp.task('seamonkey-pre', gulp.series('buildnumber', 'default_preferences', 'locale', function () {
console.log();
console.log('### Building SeaMonkey extension');
var defines = builder.merge(DEFINES, { FIREFOX: true, SKIP_BABEL: true, });
Expand Down

0 comments on commit 265ad54

Please sign in to comment.