@angular-devkit/schematics 8.2.0-next.1 → 8.2.2
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.2.
|
|
3
|
+
"version": "8.2.2",
|
|
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.2.
|
|
21
|
+
"@angular-devkit/core": "8.2.2",
|
|
22
22
|
"rxjs": "6.4.0"
|
|
23
23
|
},
|
|
24
24
|
"repository": {
|
|
@@ -49,7 +49,7 @@ class FallbackEngineHost {
|
|
|
49
49
|
// tslint:disable-next-line:no-any https://github.com/ReactiveX/rxjs/issues/3989
|
|
50
50
|
return (rxjs_1.of(options)
|
|
51
51
|
.pipe(...this._hosts
|
|
52
|
-
.map(host => operators_1.mergeMap(opt => host.transformOptions(schematic, opt, context)))));
|
|
52
|
+
.map(host => operators_1.mergeMap((opt) => host.transformOptions(schematic, opt, context)))));
|
|
53
53
|
}
|
|
54
54
|
transformContext(context) {
|
|
55
55
|
let result = context;
|
|
@@ -222,7 +222,7 @@ class FileSystemEngineHostBase {
|
|
|
222
222
|
transformOptions(schematic, options, context) {
|
|
223
223
|
// tslint:disable-next-line:no-any https://github.com/ReactiveX/rxjs/issues/3989
|
|
224
224
|
return (rxjs_1.of(options)
|
|
225
|
-
.pipe(...this._transforms.map(tFn => operators_1.mergeMap(opt => {
|
|
225
|
+
.pipe(...this._transforms.map(tFn => operators_1.mergeMap((opt) => {
|
|
226
226
|
const newOptions = tFn(schematic, opt, context);
|
|
227
227
|
if (rxjs_1.isObservable(newOptions)) {
|
|
228
228
|
return newOptions;
|
|
@@ -22,7 +22,7 @@ class NodeWorkflow extends schematics_1.workflow.BaseWorkflow {
|
|
|
22
22
|
engineHost,
|
|
23
23
|
force: options.force,
|
|
24
24
|
dryRun: options.dryRun,
|
|
25
|
-
registry: options.registry
|
|
25
|
+
registry: options.registry,
|
|
26
26
|
});
|
|
27
27
|
engineHost.registerTaskExecutor(node_1.BuiltinTaskExecutor.NodePackage, {
|
|
28
28
|
allowPackageManagerOverride: true,
|