From 0aa4fc6af8a822045483f8aa663e05a989b64e05 Mon Sep 17 00:00:00 2001 From: David Giessing Date: Thu, 22 Jan 2026 23:01:46 +0100 Subject: [PATCH] fix: Update image pattern in gulpfile to accommodate missing images --- gulpfile.mjs | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/gulpfile.mjs b/gulpfile.mjs index f4f45cab1..6942909c3 100644 --- a/gulpfile.mjs +++ b/gulpfile.mjs @@ -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)),