@angular-devkit/core 14.2.0-next.0 → 14.2.0-rc.0

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/core",
3
- "version": "14.2.0-next.0",
3
+ "version": "14.2.0-rc.0",
4
4
  "description": "Angular DevKit - Core Utility Library",
5
5
  "main": "src/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -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 = (0, rxjs_1.empty)();
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(`Project extension with invalid name (${name}) found.`, name);
92
+ context.warn(`Workspace extension with invalid name (${name}) found.`, name);
93
93
  }
94
94
  if (extensions) {
95
95
  extensions[name] = value;