Skip to content

Commit 71d3c38

Browse files
authored
Fix replace for material compact (T746303) (#93)
1 parent 2cb3f4c commit 71d3c38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/themebuider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ const runThemeBuilder = (rawOptions) => {
128128
}
129129

130130
content = JSON.stringify({
131-
baseTheme: [ options.themeName, options.colorScheme.replace('-', '.') ].join('.'),
131+
baseTheme: [ options.themeName, options.colorScheme.replace(/-/g, '.') ].join('.'),
132132
items: exportedMeta,
133133
version: result.version
134134
}, ' ', 4);

0 commit comments

Comments
 (0)