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 0cb7092 commit e6ba05bCopy full SHA for e6ba05b
packages/angular_devkit/build_webpack/src/plugins/architect.ts
@@ -100,7 +100,7 @@ export class ArchitectPlugin {
100
// This is safe since we still verify it.
101
const m = module as unknown as { identifier?: () => string };
102
const moduleId = '' + (typeof m.identifier == 'function' ? m.identifier() : '');
103
- const id = moduleId.split('!').slice(-1)[0].trim();
+ const id = moduleId.split(/!|\s+|\bmulti\b/).slice(-1)[0].trim();
104
const p = path.relative(context.workspaceRoot, id);
105
106
update(`Building ${p}`);
0 commit comments