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.
1 parent e06ecb8 commit 81eed53Copy full SHA for 81eed53
projects/igniteui-angular/migrations/common/UpdateChanges.ts
@@ -478,7 +478,7 @@ export class UpdateChanges {
478
protected updateSassVariables(entryPath: string) {
479
let fileContent = this.host.read(entryPath).toString();
480
let overwrite = false;
481
- const allowedStartCharacters = new RegExp('(\:|\,)\s?', 'g');
+ const allowedStartCharacters = new RegExp(/(:|,)\s?/, 'g');
482
// eslint-disable-next-line no-control-regex
483
const allowedEndCharacters = new RegExp('[;),: \r\n]', 'g');
484
for (const change of this.themeChanges.changes) {
0 commit comments