mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-08 17:30:09 +02:00
Upgrade gulp
to version 5.0.0
This is a major version bump, and the changelog at https://github.com/gulpjs/gulp/releases/tag/v5.0.0 indicates one breaking change that impacts us, namely that streams are now by default interpreted/transformed to UTF-8 encoding. This breaks `gulp.src` calls that work on binary files such as images or CMaps, but is fortunately easy to fix for us by disabling re-encoding for all `gulp.src` calls (see https://github.com/gulpjs/gulp/issues/2764#issuecomment-2063415792 for more information). This restores the previous behavior of copying the files as-is without Gulp performing any transformations to it, which is what we want because Gulp is only used for bundling and we make sure that the source files have the right encoding.
This commit is contained in:
parent
4d9c25a41a
commit
d25b52702a
3 changed files with 588 additions and 1345 deletions
149
gulpfile.mjs
149
gulpfile.mjs
|
@ -470,7 +470,7 @@ function createMainBundle(defines) {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
return gulp
|
return gulp
|
||||||
.src("./src/pdf.js")
|
.src("./src/pdf.js", { encoding: false })
|
||||||
.pipe(webpack2Stream(mainFileConfig))
|
.pipe(webpack2Stream(mainFileConfig))
|
||||||
.pipe(tweakWebpackOutput("pdfjsLib"));
|
.pipe(tweakWebpackOutput("pdfjsLib"));
|
||||||
}
|
}
|
||||||
|
@ -487,7 +487,7 @@ function createScriptingBundle(defines, extraOptions = undefined) {
|
||||||
extraOptions
|
extraOptions
|
||||||
);
|
);
|
||||||
return gulp
|
return gulp
|
||||||
.src("./src/pdf.scripting.js")
|
.src("./src/pdf.scripting.js", { encoding: false })
|
||||||
.pipe(webpack2Stream(scriptingFileConfig));
|
.pipe(webpack2Stream(scriptingFileConfig));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -498,7 +498,7 @@ function createSandboxExternal(defines) {
|
||||||
defines,
|
defines,
|
||||||
};
|
};
|
||||||
return gulp
|
return gulp
|
||||||
.src("./src/pdf.sandbox.external.js")
|
.src("./src/pdf.sandbox.external.js", { encoding: false })
|
||||||
.pipe(rename("pdf.sandbox.external.sys.mjs"))
|
.pipe(rename("pdf.sandbox.external.sys.mjs"))
|
||||||
.pipe(
|
.pipe(
|
||||||
transform("utf8", content => {
|
transform("utf8", content => {
|
||||||
|
@ -539,7 +539,7 @@ function createSandboxBundle(defines, extraOptions = undefined) {
|
||||||
);
|
);
|
||||||
|
|
||||||
return gulp
|
return gulp
|
||||||
.src("./src/pdf.sandbox.js")
|
.src("./src/pdf.sandbox.js", { encoding: false })
|
||||||
.pipe(webpack2Stream(sandboxFileConfig))
|
.pipe(webpack2Stream(sandboxFileConfig))
|
||||||
.pipe(tweakWebpackOutput("pdfjsSandbox"));
|
.pipe(tweakWebpackOutput("pdfjsSandbox"));
|
||||||
}
|
}
|
||||||
|
@ -552,7 +552,7 @@ function createWorkerBundle(defines) {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
return gulp
|
return gulp
|
||||||
.src("./src/pdf.worker.js")
|
.src("./src/pdf.worker.js", { encoding: false })
|
||||||
.pipe(webpack2Stream(workerFileConfig))
|
.pipe(webpack2Stream(workerFileConfig))
|
||||||
.pipe(tweakWebpackOutput("pdfjsWorker"));
|
.pipe(tweakWebpackOutput("pdfjsWorker"));
|
||||||
}
|
}
|
||||||
|
@ -570,7 +570,9 @@ function createWebBundle(defines, options) {
|
||||||
defaultPreferencesDir: options.defaultPreferencesDir,
|
defaultPreferencesDir: options.defaultPreferencesDir,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
return gulp.src("./web/viewer.js").pipe(webpack2Stream(viewerFileConfig));
|
return gulp
|
||||||
|
.src("./web/viewer.js", { encoding: false })
|
||||||
|
.pipe(webpack2Stream(viewerFileConfig));
|
||||||
}
|
}
|
||||||
|
|
||||||
function createGVWebBundle(defines, options) {
|
function createGVWebBundle(defines, options) {
|
||||||
|
@ -587,7 +589,7 @@ function createGVWebBundle(defines, options) {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
return gulp
|
return gulp
|
||||||
.src("./web/viewer-geckoview.js")
|
.src("./web/viewer-geckoview.js", { encoding: false })
|
||||||
.pipe(webpack2Stream(viewerFileConfig));
|
.pipe(webpack2Stream(viewerFileConfig));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -599,7 +601,7 @@ function createComponentsBundle(defines) {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
return gulp
|
return gulp
|
||||||
.src("./web/pdf_viewer.component.js")
|
.src("./web/pdf_viewer.component.js", { encoding: false })
|
||||||
.pipe(webpack2Stream(componentsFileConfig))
|
.pipe(webpack2Stream(componentsFileConfig))
|
||||||
.pipe(tweakWebpackOutput("pdfjsViewer"));
|
.pipe(tweakWebpackOutput("pdfjsViewer"));
|
||||||
}
|
}
|
||||||
|
@ -614,7 +616,7 @@ function createImageDecodersBundle(defines) {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
return gulp
|
return gulp
|
||||||
.src("./src/pdf.image_decoders.js")
|
.src("./src/pdf.image_decoders.js", { encoding: false })
|
||||||
.pipe(webpack2Stream(componentsFileConfig))
|
.pipe(webpack2Stream(componentsFileConfig))
|
||||||
.pipe(tweakWebpackOutput("pdfjsImageDecoders"));
|
.pipe(tweakWebpackOutput("pdfjsImageDecoders"));
|
||||||
}
|
}
|
||||||
|
@ -622,6 +624,7 @@ function createImageDecodersBundle(defines) {
|
||||||
function createCMapBundle() {
|
function createCMapBundle() {
|
||||||
return gulp.src(["external/bcmaps/*.bcmap", "external/bcmaps/LICENSE"], {
|
return gulp.src(["external/bcmaps/*.bcmap", "external/bcmaps/LICENSE"], {
|
||||||
base: "external/bcmaps",
|
base: "external/bcmaps",
|
||||||
|
encoding: false,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -635,6 +638,7 @@ function createStandardFontBundle() {
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
base: "external/standard_fonts",
|
base: "external/standard_fonts",
|
||||||
|
encoding: false,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -845,7 +849,7 @@ function buildDefaultPreferences(defines, dir) {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
return gulp
|
return gulp
|
||||||
.src("web/app_options.js")
|
.src("web/app_options.js", { encoding: false })
|
||||||
.pipe(webpack2Stream(defaultPreferencesConfig))
|
.pipe(webpack2Stream(defaultPreferencesConfig))
|
||||||
.pipe(gulp.dest(DEFAULT_PREFERENCES_DIR + dir));
|
.pipe(gulp.dest(DEFAULT_PREFERENCES_DIR + dir));
|
||||||
}
|
}
|
||||||
|
@ -955,6 +959,7 @@ gulp.task("locale", function () {
|
||||||
gulp
|
gulp
|
||||||
.src(`${L10N_DIR}/${glob}/viewer.ftl`, {
|
.src(`${L10N_DIR}/${glob}/viewer.ftl`, {
|
||||||
base: L10N_DIR,
|
base: L10N_DIR,
|
||||||
|
encoding: false,
|
||||||
})
|
})
|
||||||
.pipe(gulp.dest(VIEWER_LOCALE_OUTPUT)),
|
.pipe(gulp.dest(VIEWER_LOCALE_OUTPUT)),
|
||||||
]);
|
]);
|
||||||
|
@ -1032,11 +1037,14 @@ function buildGeneric(defines, dir) {
|
||||||
? "generic/"
|
? "generic/"
|
||||||
: "generic-legacy/",
|
: "generic-legacy/",
|
||||||
}).pipe(gulp.dest(dir + "web")),
|
}).pipe(gulp.dest(dir + "web")),
|
||||||
gulp.src(COMMON_WEB_FILES, { base: "web/" }).pipe(gulp.dest(dir + "web")),
|
gulp
|
||||||
gulp.src("LICENSE").pipe(gulp.dest(dir)),
|
.src(COMMON_WEB_FILES, { base: "web/", encoding: false })
|
||||||
|
.pipe(gulp.dest(dir + "web")),
|
||||||
|
gulp.src("LICENSE", { encoding: false }).pipe(gulp.dest(dir)),
|
||||||
gulp
|
gulp
|
||||||
.src(["web/locale/*/viewer.ftl", "web/locale/locale.json"], {
|
.src(["web/locale/*/viewer.ftl", "web/locale/locale.json"], {
|
||||||
base: "web/",
|
base: "web/",
|
||||||
|
encoding: false,
|
||||||
})
|
})
|
||||||
.pipe(gulp.dest(dir + "web")),
|
.pipe(gulp.dest(dir + "web")),
|
||||||
createCMapBundle().pipe(gulp.dest(dir + "web/cmaps")),
|
createCMapBundle().pipe(gulp.dest(dir + "web/cmaps")),
|
||||||
|
@ -1056,7 +1064,7 @@ function buildGeneric(defines, dir) {
|
||||||
.pipe(gulp.dest(dir + "web")),
|
.pipe(gulp.dest(dir + "web")),
|
||||||
|
|
||||||
gulp
|
gulp
|
||||||
.src("web/compressed.tracemonkey-pldi-09.pdf")
|
.src("web/compressed.tracemonkey-pldi-09.pdf", { encoding: false })
|
||||||
.pipe(gulp.dest(dir + "web")),
|
.pipe(gulp.dest(dir + "web")),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
@ -1129,7 +1137,9 @@ function buildComponents(defines, dir) {
|
||||||
|
|
||||||
return ordered([
|
return ordered([
|
||||||
createComponentsBundle(defines).pipe(gulp.dest(dir)),
|
createComponentsBundle(defines).pipe(gulp.dest(dir)),
|
||||||
gulp.src(COMPONENTS_IMAGES).pipe(gulp.dest(dir + "images")),
|
gulp
|
||||||
|
.src(COMPONENTS_IMAGES, { encoding: false })
|
||||||
|
.pipe(gulp.dest(dir + "images")),
|
||||||
preprocessCSS("web/pdf_viewer.css", defines)
|
preprocessCSS("web/pdf_viewer.css", defines)
|
||||||
.pipe(
|
.pipe(
|
||||||
postcss([
|
postcss([
|
||||||
|
@ -1355,7 +1365,7 @@ gulp.task(
|
||||||
defaultPreferencesDir: "mozcentral/",
|
defaultPreferencesDir: "mozcentral/",
|
||||||
}).pipe(gulp.dest(MOZCENTRAL_CONTENT_DIR + "web")),
|
}).pipe(gulp.dest(MOZCENTRAL_CONTENT_DIR + "web")),
|
||||||
gulp
|
gulp
|
||||||
.src(MOZCENTRAL_WEB_FILES, { base: "web/" })
|
.src(MOZCENTRAL_WEB_FILES, { base: "web/", encoding: false })
|
||||||
.pipe(gulp.dest(MOZCENTRAL_CONTENT_DIR + "web")),
|
.pipe(gulp.dest(MOZCENTRAL_CONTENT_DIR + "web")),
|
||||||
createCMapBundle().pipe(
|
createCMapBundle().pipe(
|
||||||
gulp.dest(MOZCENTRAL_CONTENT_DIR + "web/cmaps")
|
gulp.dest(MOZCENTRAL_CONTENT_DIR + "web/cmaps")
|
||||||
|
@ -1391,10 +1401,16 @@ gulp.task(
|
||||||
.pipe(replaceMozcentralCSS())
|
.pipe(replaceMozcentralCSS())
|
||||||
.pipe(gulp.dest(MOZCENTRAL_CONTENT_DIR + "web")),
|
.pipe(gulp.dest(MOZCENTRAL_CONTENT_DIR + "web")),
|
||||||
|
|
||||||
gulp.src("l10n/en-US/*.ftl").pipe(gulp.dest(MOZCENTRAL_L10N_DIR)),
|
|
||||||
gulp.src("LICENSE").pipe(gulp.dest(MOZCENTRAL_EXTENSION_DIR)),
|
|
||||||
gulp
|
gulp
|
||||||
.src(FIREFOX_CONTENT_DIR + "PdfJsDefaultPreferences.sys.mjs")
|
.src("l10n/en-US/*.ftl", { encoding: false })
|
||||||
|
.pipe(gulp.dest(MOZCENTRAL_L10N_DIR)),
|
||||||
|
gulp
|
||||||
|
.src("LICENSE", { encoding: false })
|
||||||
|
.pipe(gulp.dest(MOZCENTRAL_EXTENSION_DIR)),
|
||||||
|
gulp
|
||||||
|
.src(FIREFOX_CONTENT_DIR + "PdfJsDefaultPreferences.sys.mjs", {
|
||||||
|
encoding: false,
|
||||||
|
})
|
||||||
.pipe(transform("utf8", preprocessDefaultPreferences))
|
.pipe(transform("utf8", preprocessDefaultPreferences))
|
||||||
.pipe(gulp.dest(MOZCENTRAL_CONTENT_DIR)),
|
.pipe(gulp.dest(MOZCENTRAL_CONTENT_DIR)),
|
||||||
]);
|
]);
|
||||||
|
@ -1449,12 +1465,13 @@ gulp.task(
|
||||||
gulp.dest(CHROME_BUILD_CONTENT_DIR + "web")
|
gulp.dest(CHROME_BUILD_CONTENT_DIR + "web")
|
||||||
),
|
),
|
||||||
gulp
|
gulp
|
||||||
.src(CHROME_WEB_FILES, { base: "web/" })
|
.src(CHROME_WEB_FILES, { base: "web/", encoding: false })
|
||||||
.pipe(gulp.dest(CHROME_BUILD_CONTENT_DIR + "web")),
|
.pipe(gulp.dest(CHROME_BUILD_CONTENT_DIR + "web")),
|
||||||
|
|
||||||
gulp
|
gulp
|
||||||
.src(["web/locale/*/viewer.ftl", "web/locale/locale.json"], {
|
.src(["web/locale/*/viewer.ftl", "web/locale/locale.json"], {
|
||||||
base: "web/",
|
base: "web/",
|
||||||
|
encoding: false,
|
||||||
})
|
})
|
||||||
.pipe(gulp.dest(CHROME_BUILD_CONTENT_DIR + "web")),
|
.pipe(gulp.dest(CHROME_BUILD_CONTENT_DIR + "web")),
|
||||||
createCMapBundle().pipe(
|
createCMapBundle().pipe(
|
||||||
|
@ -1479,9 +1496,11 @@ gulp.task(
|
||||||
)
|
)
|
||||||
.pipe(gulp.dest(CHROME_BUILD_CONTENT_DIR + "web")),
|
.pipe(gulp.dest(CHROME_BUILD_CONTENT_DIR + "web")),
|
||||||
|
|
||||||
gulp.src("LICENSE").pipe(gulp.dest(CHROME_BUILD_DIR)),
|
|
||||||
gulp
|
gulp
|
||||||
.src("extensions/chromium/manifest.json")
|
.src("LICENSE", { encoding: false })
|
||||||
|
.pipe(gulp.dest(CHROME_BUILD_DIR)),
|
||||||
|
gulp
|
||||||
|
.src("extensions/chromium/manifest.json", { encoding: false })
|
||||||
.pipe(replace(/\bPDFJSSCRIPT_VERSION\b/g, version))
|
.pipe(replace(/\bPDFJSSCRIPT_VERSION\b/g, version))
|
||||||
.pipe(gulp.dest(CHROME_BUILD_DIR)),
|
.pipe(gulp.dest(CHROME_BUILD_DIR)),
|
||||||
gulp
|
gulp
|
||||||
|
@ -1490,7 +1509,7 @@ gulp.task(
|
||||||
"extensions/chromium/**/*.{html,js,css,png}",
|
"extensions/chromium/**/*.{html,js,css,png}",
|
||||||
"extensions/chromium/preferences_schema.json",
|
"extensions/chromium/preferences_schema.json",
|
||||||
],
|
],
|
||||||
{ base: "extensions/chromium/" }
|
{ base: "extensions/chromium/", encoding: false }
|
||||||
)
|
)
|
||||||
.pipe(gulp.dest(CHROME_BUILD_DIR)),
|
.pipe(gulp.dest(CHROME_BUILD_DIR)),
|
||||||
]);
|
]);
|
||||||
|
@ -1593,11 +1612,14 @@ function buildLib(defines, dir) {
|
||||||
"src/{core,display,shared}/**/*.js",
|
"src/{core,display,shared}/**/*.js",
|
||||||
"src/{pdf,pdf.image_decoders,pdf.worker}.js",
|
"src/{pdf,pdf.image_decoders,pdf.worker}.js",
|
||||||
],
|
],
|
||||||
{ base: "src/" }
|
{ base: "src/", encoding: false }
|
||||||
),
|
),
|
||||||
gulp.src(["web/*.js", "!web/{pdfjs,viewer}.js"], { base: "." }),
|
gulp.src(["web/*.js", "!web/{pdfjs,viewer}.js"], {
|
||||||
gulp.src("test/unit/*.js", { base: "." }),
|
base: ".",
|
||||||
gulp.src("external/openjpeg/*.js", { base: "openjpeg/" }),
|
encoding: false,
|
||||||
|
}),
|
||||||
|
gulp.src("test/unit/*.js", { base: ".", encoding: false }),
|
||||||
|
gulp.src("external/openjpeg/*.js", { base: "openjpeg/", encoding: false }),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return buildLibHelper(bundleDefines, inputStream, dir);
|
return buildLibHelper(bundleDefines, inputStream, dir);
|
||||||
|
@ -1665,7 +1687,7 @@ gulp.task(
|
||||||
|
|
||||||
function compressPublish(targetName, dir) {
|
function compressPublish(targetName, dir) {
|
||||||
return gulp
|
return gulp
|
||||||
.src(dir + "**")
|
.src(dir + "**", { encoding: false })
|
||||||
.pipe(zip(targetName))
|
.pipe(zip(targetName))
|
||||||
.pipe(gulp.dest(BUILD_DIR))
|
.pipe(gulp.dest(BUILD_DIR))
|
||||||
.on("end", function () {
|
.on("end", function () {
|
||||||
|
@ -1826,11 +1848,12 @@ gulp.task(
|
||||||
gulp
|
gulp
|
||||||
.src("external/dist/**/*", {
|
.src("external/dist/**/*", {
|
||||||
base: "external/dist",
|
base: "external/dist",
|
||||||
|
encoding: false,
|
||||||
removeBOM: false,
|
removeBOM: false,
|
||||||
})
|
})
|
||||||
.pipe(gulp.dest(TYPESTEST_DIR)),
|
.pipe(gulp.dest(TYPESTEST_DIR)),
|
||||||
gulp
|
gulp
|
||||||
.src(TYPES_DIR + "**/*", { base: TYPES_DIR })
|
.src(TYPES_DIR + "**/*", { base: TYPES_DIR, encoding: false })
|
||||||
.pipe(gulp.dest(TYPESTEST_DIR + "types/")),
|
.pipe(gulp.dest(TYPESTEST_DIR + "types/")),
|
||||||
]);
|
]);
|
||||||
},
|
},
|
||||||
|
@ -2083,16 +2106,21 @@ function ghPagesPrepare() {
|
||||||
|
|
||||||
return ordered([
|
return ordered([
|
||||||
gulp
|
gulp
|
||||||
.src(GENERIC_DIR + "**/*", { base: GENERIC_DIR, removeBOM: false })
|
.src(GENERIC_DIR + "**/*", {
|
||||||
|
base: GENERIC_DIR,
|
||||||
|
encoding: false,
|
||||||
|
removeBOM: false,
|
||||||
|
})
|
||||||
.pipe(gulp.dest(GH_PAGES_DIR)),
|
.pipe(gulp.dest(GH_PAGES_DIR)),
|
||||||
gulp
|
gulp
|
||||||
.src(GENERIC_LEGACY_DIR + "**/*", {
|
.src(GENERIC_LEGACY_DIR + "**/*", {
|
||||||
base: GENERIC_LEGACY_DIR,
|
base: GENERIC_LEGACY_DIR,
|
||||||
|
encoding: false,
|
||||||
removeBOM: false,
|
removeBOM: false,
|
||||||
})
|
})
|
||||||
.pipe(gulp.dest(GH_PAGES_DIR + "legacy/")),
|
.pipe(gulp.dest(GH_PAGES_DIR + "legacy/")),
|
||||||
gulp
|
gulp
|
||||||
.src(JSDOC_BUILD_DIR + "**/*", { base: JSDOC_BUILD_DIR })
|
.src(JSDOC_BUILD_DIR + "**/*", { base: JSDOC_BUILD_DIR, encoding: false })
|
||||||
.pipe(gulp.dest(GH_PAGES_DIR + "api/draft/")),
|
.pipe(gulp.dest(GH_PAGES_DIR + "api/draft/")),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
@ -2213,62 +2241,91 @@ gulp.task(
|
||||||
gulp
|
gulp
|
||||||
.src("external/dist/**/*", {
|
.src("external/dist/**/*", {
|
||||||
base: "external/dist",
|
base: "external/dist",
|
||||||
|
encoding: false,
|
||||||
removeBOM: false,
|
removeBOM: false,
|
||||||
})
|
})
|
||||||
.pipe(gulp.dest(DIST_DIR)),
|
.pipe(gulp.dest(DIST_DIR)),
|
||||||
gulp.src(GENERIC_DIR + "LICENSE").pipe(gulp.dest(DIST_DIR)),
|
|
||||||
gulp
|
gulp
|
||||||
.src(GENERIC_DIR + "web/cmaps/**/*", { base: GENERIC_DIR + "web" })
|
.src(GENERIC_DIR + "LICENSE", { encoding: false })
|
||||||
|
.pipe(gulp.dest(DIST_DIR)),
|
||||||
|
gulp
|
||||||
|
.src(GENERIC_DIR + "web/cmaps/**/*", {
|
||||||
|
base: GENERIC_DIR + "web",
|
||||||
|
encoding: false,
|
||||||
|
})
|
||||||
.pipe(gulp.dest(DIST_DIR)),
|
.pipe(gulp.dest(DIST_DIR)),
|
||||||
gulp
|
gulp
|
||||||
.src(GENERIC_DIR + "web/standard_fonts/**/*", {
|
.src(GENERIC_DIR + "web/standard_fonts/**/*", {
|
||||||
base: GENERIC_DIR + "web",
|
base: GENERIC_DIR + "web",
|
||||||
|
encoding: false,
|
||||||
})
|
})
|
||||||
.pipe(gulp.dest(DIST_DIR)),
|
.pipe(gulp.dest(DIST_DIR)),
|
||||||
gulp
|
gulp
|
||||||
.src([
|
.src(
|
||||||
|
[
|
||||||
GENERIC_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.mjs",
|
GENERIC_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.mjs",
|
||||||
GENERIC_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.mjs.map",
|
GENERIC_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.mjs.map",
|
||||||
])
|
],
|
||||||
|
{ encoding: false }
|
||||||
|
)
|
||||||
.pipe(gulp.dest(DIST_DIR + "build/")),
|
.pipe(gulp.dest(DIST_DIR + "build/")),
|
||||||
gulp
|
gulp
|
||||||
.src([
|
.src(
|
||||||
|
[
|
||||||
GENERIC_LEGACY_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.mjs",
|
GENERIC_LEGACY_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.mjs",
|
||||||
GENERIC_LEGACY_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.mjs.map",
|
GENERIC_LEGACY_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.mjs.map",
|
||||||
])
|
],
|
||||||
|
{ encoding: false }
|
||||||
|
)
|
||||||
.pipe(gulp.dest(DIST_DIR + "legacy/build/")),
|
.pipe(gulp.dest(DIST_DIR + "legacy/build/")),
|
||||||
gulp
|
gulp
|
||||||
.src(MINIFIED_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.min.mjs")
|
.src(MINIFIED_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.min.mjs", {
|
||||||
|
encoding: false,
|
||||||
|
})
|
||||||
.pipe(gulp.dest(DIST_DIR + "build/")),
|
.pipe(gulp.dest(DIST_DIR + "build/")),
|
||||||
gulp
|
gulp
|
||||||
.src(MINIFIED_DIR + "image_decoders/pdf.image_decoders.min.mjs")
|
.src(MINIFIED_DIR + "image_decoders/pdf.image_decoders.min.mjs", {
|
||||||
|
encoding: false,
|
||||||
|
})
|
||||||
.pipe(gulp.dest(DIST_DIR + "image_decoders/")),
|
.pipe(gulp.dest(DIST_DIR + "image_decoders/")),
|
||||||
gulp
|
gulp
|
||||||
.src(
|
.src(
|
||||||
MINIFIED_LEGACY_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.min.mjs"
|
MINIFIED_LEGACY_DIR + "build/{pdf,pdf.worker,pdf.sandbox}.min.mjs",
|
||||||
|
{ encoding: false }
|
||||||
)
|
)
|
||||||
.pipe(gulp.dest(DIST_DIR + "legacy/build/")),
|
.pipe(gulp.dest(DIST_DIR + "legacy/build/")),
|
||||||
gulp
|
gulp
|
||||||
.src(
|
.src(
|
||||||
MINIFIED_LEGACY_DIR + "image_decoders/pdf.image_decoders.min.mjs"
|
MINIFIED_LEGACY_DIR + "image_decoders/pdf.image_decoders.min.mjs",
|
||||||
|
{ encoding: false }
|
||||||
)
|
)
|
||||||
.pipe(gulp.dest(DIST_DIR + "legacy/image_decoders/")),
|
.pipe(gulp.dest(DIST_DIR + "legacy/image_decoders/")),
|
||||||
gulp
|
gulp
|
||||||
.src(COMPONENTS_DIR + "**/*", { base: COMPONENTS_DIR })
|
.src(COMPONENTS_DIR + "**/*", {
|
||||||
|
base: COMPONENTS_DIR,
|
||||||
|
encoding: false,
|
||||||
|
})
|
||||||
.pipe(gulp.dest(DIST_DIR + "web/")),
|
.pipe(gulp.dest(DIST_DIR + "web/")),
|
||||||
gulp
|
gulp
|
||||||
.src(COMPONENTS_LEGACY_DIR + "**/*", { base: COMPONENTS_LEGACY_DIR })
|
.src(COMPONENTS_LEGACY_DIR + "**/*", {
|
||||||
|
base: COMPONENTS_LEGACY_DIR,
|
||||||
|
encoding: false,
|
||||||
|
})
|
||||||
.pipe(gulp.dest(DIST_DIR + "legacy/web/")),
|
.pipe(gulp.dest(DIST_DIR + "legacy/web/")),
|
||||||
gulp
|
gulp
|
||||||
.src(IMAGE_DECODERS_DIR + "**/*", { base: IMAGE_DECODERS_DIR })
|
.src(IMAGE_DECODERS_DIR + "**/*", {
|
||||||
|
base: IMAGE_DECODERS_DIR,
|
||||||
|
encoding: false,
|
||||||
|
})
|
||||||
.pipe(gulp.dest(DIST_DIR + "image_decoders/")),
|
.pipe(gulp.dest(DIST_DIR + "image_decoders/")),
|
||||||
gulp
|
gulp
|
||||||
.src(IMAGE_DECODERS_LEGACY_DIR + "**/*", {
|
.src(IMAGE_DECODERS_LEGACY_DIR + "**/*", {
|
||||||
base: IMAGE_DECODERS_LEGACY_DIR,
|
base: IMAGE_DECODERS_LEGACY_DIR,
|
||||||
|
encoding: false,
|
||||||
})
|
})
|
||||||
.pipe(gulp.dest(DIST_DIR + "legacy/image_decoders/")),
|
.pipe(gulp.dest(DIST_DIR + "legacy/image_decoders/")),
|
||||||
gulp
|
gulp
|
||||||
.src(TYPES_DIR + "**/*", { base: TYPES_DIR })
|
.src(TYPES_DIR + "**/*", { base: TYPES_DIR, encoding: false })
|
||||||
.pipe(gulp.dest(DIST_DIR + "types/")),
|
.pipe(gulp.dest(DIST_DIR + "types/")),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
@ -2352,7 +2409,7 @@ gulp.task(
|
||||||
fs.mkdirSync(MOZCENTRAL_BASELINE_DIR, { recursive: true });
|
fs.mkdirSync(MOZCENTRAL_BASELINE_DIR, { recursive: true });
|
||||||
|
|
||||||
gulp
|
gulp
|
||||||
.src([BASELINE_DIR + BUILD_DIR + "mozcentral/**/*"])
|
.src([BASELINE_DIR + BUILD_DIR + "mozcentral/**/*"], { encoding: false })
|
||||||
.pipe(gulp.dest(MOZCENTRAL_BASELINE_DIR))
|
.pipe(gulp.dest(MOZCENTRAL_BASELINE_DIR))
|
||||||
.on("end", function () {
|
.on("end", function () {
|
||||||
// Commit the mozcentral baseline.
|
// Commit the mozcentral baseline.
|
||||||
|
@ -2389,7 +2446,7 @@ gulp.task(
|
||||||
}
|
}
|
||||||
|
|
||||||
gulp
|
gulp
|
||||||
.src([BUILD_DIR + "mozcentral/**/*"])
|
.src([BUILD_DIR + "mozcentral/**/*"], { encoding: false })
|
||||||
.pipe(gulp.dest(MOZCENTRAL_BASELINE_DIR))
|
.pipe(gulp.dest(MOZCENTRAL_BASELINE_DIR))
|
||||||
.on("end", function () {
|
.on("end", function () {
|
||||||
safeSpawnSync("git", ["add", "-A"], { cwd: MOZCENTRAL_BASELINE_DIR });
|
safeSpawnSync("git", ["add", "-A"], { cwd: MOZCENTRAL_BASELINE_DIR });
|
||||||
|
|
1774
package-lock.json
generated
1774
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -27,7 +27,7 @@
|
||||||
"eslint-plugin-sort-exports": "^0.9.1",
|
"eslint-plugin-sort-exports": "^0.9.1",
|
||||||
"eslint-plugin-unicorn": "^53.0.0",
|
"eslint-plugin-unicorn": "^53.0.0",
|
||||||
"globals": "^15.3.0",
|
"globals": "^15.3.0",
|
||||||
"gulp": "^4.0.2",
|
"gulp": "^5.0.0",
|
||||||
"gulp-cli": "^3.0.0",
|
"gulp-cli": "^3.0.0",
|
||||||
"gulp-postcss": "^10.0.0",
|
"gulp-postcss": "^10.0.0",
|
||||||
"gulp-rename": "^2.0.0",
|
"gulp-rename": "^2.0.0",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue