@angular-devkit/core 14.1.2 → 14.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/logger/logger.js
CHANGED
|
@@ -15,7 +15,7 @@ class Logger extends rxjs_1.Observable {
|
|
|
15
15
|
this.name = name;
|
|
16
16
|
this.parent = parent;
|
|
17
17
|
this._subject = new rxjs_1.Subject();
|
|
18
|
-
this._obs =
|
|
18
|
+
this._obs = rxjs_1.EMPTY;
|
|
19
19
|
this._subscription = null;
|
|
20
20
|
const path = [];
|
|
21
21
|
let p = parent;
|
|
@@ -89,7 +89,7 @@ function parseWorkspace(workspaceNode, context) {
|
|
|
89
89
|
}
|
|
90
90
|
else {
|
|
91
91
|
if (!context.unprefixedWorkspaceExtensions.has(name) && !/^[a-z]{1,3}-.*/.test(name)) {
|
|
92
|
-
context.warn(`
|
|
92
|
+
context.warn(`Workspace extension with invalid name (${name}) found.`, name);
|
|
93
93
|
}
|
|
94
94
|
if (extensions) {
|
|
95
95
|
extensions[name] = value;
|