fix: Update image pattern in gulpfile to accommodate missing images

This commit is contained in:
David Giessing 2026-01-22 23:01:46 +01:00
parent 6a4a3b060d
commit 0aa4fc6af8
No known key found for this signature in database
GPG Key ID: FBE593BC508B5CFF

View File

@ -1203,16 +1203,7 @@ gulp.task(
function buildComponents(defines, dir) {
fs.rmSync(dir, { recursive: true, force: true });
const COMPONENTS_IMAGES = [
"web/images/annotation-*.svg",
"web/images/loading-icon.gif",
"web/images/altText_*.svg",
"web/images/editor-toolbar-*.svg",
"web/images/messageBar_*.svg",
"web/images/toolbarButton-{editorHighlight,menuArrow}.svg",
"web/images/cursor-*.svg",
"web/images/comment-*.svg",
];
const COMPONENTS_IMAGES = ["web/images/*.svg", "web/images/*.gif"];
return ordered([
createComponentsBundle(defines).pipe(gulp.dest(dir)),