Skip to content

Commit 7b62cbb

Browse files
committed
release: 6.0.0-rc.2
1 parent 453ed74 commit 7b62cbb

File tree

4 files changed

+125
-25
lines changed

4 files changed

+125
-25
lines changed

package-lock.json

+116-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/cli",
3-
"version": "6.0.0-rc.1",
3+
"version": "6.0.0-rc.2",
44
"description": "CLI tool for Angular",
55
"main": "packages/@angular/cli/lib/cli/index.js",
66
"trackingCode": "UA-8594346-19",

packages/@angular/cli/models/schematic-command.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export abstract class SchematicCommand extends Command {
8585
const loggingQueue: string[] = [];
8686
const fsHost = new virtualFs.ScopedHost(new NodeJsSyncHost(), normalize(this.project.root));
8787
const workflow = new NodeWorkflow(
88-
fsHost,
88+
fsHost as any,
8989
{
9090
force,
9191
dryRun,
@@ -149,7 +149,7 @@ export abstract class SchematicCommand extends Command {
149149
schematic: schematicName,
150150
options: schematicOptions,
151151
debug: debug,
152-
logger: this.logger,
152+
logger: this.logger as any,
153153
allowPrivate: this.allowPrivateSchematics,
154154
})
155155
.subscribe({

packages/@angular/cli/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/cli",
3-
"version": "6.0.0-rc.1",
3+
"version": "6.0.0-rc.2",
44
"description": "CLI tool for Angular",
55
"main": "lib/cli/index.js",
66
"trackingCode": "UA-8594346-19",
@@ -27,11 +27,11 @@
2727
},
2828
"homepage": "https://github.com/angular/angular-cli",
2929
"dependencies": {
30-
"@angular-devkit/architect": "0.5.1",
31-
"@angular-devkit/core": "0.5.1",
32-
"@angular-devkit/schematics": "0.5.1",
33-
"@schematics/angular": "0.5.1",
34-
"@schematics/update": "0.5.1",
30+
"@angular-devkit/architect": "0.5.4",
31+
"@angular-devkit/core": "0.5.4",
32+
"@angular-devkit/schematics": "0.5.4",
33+
"@schematics/angular": "0.5.4",
34+
"@schematics/update": "0.5.4",
3535
"chalk": "~2.2.0",
3636
"ember-cli-string-utils": "^1.0.0",
3737
"fs-extra": "^4.0.0",

0 commit comments

Comments
 (0)