We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b274a13 + 8ac6323 commit cb62d04Copy full SHA for cb62d04
projects/igniteui-angular/migrations/common/UpdateChanges.ts
@@ -472,7 +472,7 @@ export class UpdateChanges {
472
protected updateSassVariables(entryPath: string) {
473
let fileContent = this.host.read(entryPath).toString();
474
let overwrite = false;
475
- const allowedStartCharacters = new RegExp('(\:|\,)\s?', 'g');
+ const allowedStartCharacters = new RegExp(/(:|,)\s?/, 'g');
476
const allowedEndCharacters = new RegExp('[;),: \r\n]', 'g');
477
for (const change of this.themeChanges.changes) {
478
if (change.type !== ThemeType.Variable) {
0 commit comments