Skip to content

Commit bfa44af

Browse files
Merge pull request #20554 from dgiessing/patch-1
Update image pattern in gulpfile to accommodate missing images
2 parents 109ea59 + 0aa4fc6 commit bfa44af

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

gulpfile.mjs

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1203,16 +1203,7 @@ gulp.task(
12031203
function buildComponents(defines, dir) {
12041204
fs.rmSync(dir, { recursive: true, force: true });
12051205

1206-
const COMPONENTS_IMAGES = [
1207-
"web/images/annotation-*.svg",
1208-
"web/images/loading-icon.gif",
1209-
"web/images/altText_*.svg",
1210-
"web/images/editor-toolbar-*.svg",
1211-
"web/images/messageBar_*.svg",
1212-
"web/images/toolbarButton-{editorHighlight,menuArrow}.svg",
1213-
"web/images/cursor-*.svg",
1214-
"web/images/comment-*.svg",
1215-
];
1206+
const COMPONENTS_IMAGES = ["web/images/*.svg", "web/images/*.gif"];
12161207

12171208
return ordered([
12181209
createComponentsBundle(defines).pipe(gulp.dest(dir)),

0 commit comments

Comments
 (0)