@angular-devkit/schematics 8.0.0 → 8.0.4

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/schematics",
3
- "version": "8.0.0",
3
+ "version": "8.0.4",
4
4
  "description": "Angular Schematics - Library",
5
5
  "main": "src/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "schematics"
19
19
  ],
20
20
  "dependencies": {
21
- "@angular-devkit/core": "8.0.0",
21
+ "@angular-devkit/core": "8.0.4",
22
22
  "rxjs": "6.4.0"
23
23
  },
24
24
  "repository": {
@@ -58,7 +58,7 @@ class NodeModulesEngineHost extends file_system_engine_host_base_1.FileSystemEng
58
58
  }
59
59
  _resolveCollectionPath(name) {
60
60
  let collectionPath = undefined;
61
- if (name.replace(/\\/, '/').split('/').length > (name[0] == '@' ? 2 : 1)) {
61
+ if (name.replace(/\\/g, '/').split('/').length > (name[0] == '@' ? 2 : 1)) {
62
62
  try {
63
63
  collectionPath = this._resolvePath(name, process.cwd());
64
64
  }