Skip to content

Commit

Permalink
Merge pull request #15019 from mozilla/revert-15003-mc
Browse files Browse the repository at this point in the history
Revert "Change the name of the generated pdf.sandbox.external for mozilla-central"
  • Loading branch information
calixteman authored Jun 10, 2022
2 parents 5d88233 + c8f6cb9 commit 808a55e
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,15 +393,12 @@ function createSandboxExternal(defines) {
saveComments: false,
defines,
};
return gulp
.src("./src/pdf.sandbox.external.js")
.pipe(
transform("utf8", content => {
content = preprocessor2.preprocessPDFJSCode(ctx, content);
return `${licenseHeader}\n${content}`;
})
)
.pipe(rename("pdf.sandbox.external.jsm"));
return gulp.src("./src/pdf.sandbox.external.js").pipe(
transform("utf8", content => {
content = preprocessor2.preprocessPDFJSCode(ctx, content);
return `${licenseHeader}\n${content}`;
})
);
}

function createTemporaryScriptingBundle(defines, extraOptions = undefined) {
Expand Down

0 comments on commit 808a55e

Please sign in to comment.