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 b000c6b + 64089bf commit 52edfd9Copy full SHA for 52edfd9
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