@angular/cli 13.0.0-rc.0 → 13.0.0-rc.1

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.
@@ -163,7 +163,7 @@ class UpdateCommand extends command_1.Command {
163
163
  */
164
164
  async executeMigrations(packageName, collectionPath, from, to, commit) {
165
165
  const collection = this.workflow.engine.createCollection(collectionPath);
166
- const migrationRange = new semver.Range('>' + (semver.prerelease(from) ? from.split('-')[0] + '-0' : from) + ' <=' + to);
166
+ const migrationRange = new semver.Range('>' + (semver.prerelease(from) ? from.split('-')[0] + '-0' : from) + ' <=' + to.split('-')[0]);
167
167
  const migrations = [];
168
168
  for (const name of collection.listSchematicNames()) {
169
169
  const schematic = this.workflow.engine.createSchematic(name, collection);
@@ -182,7 +182,7 @@ async function promptProjectAnalytics(force = false) {
182
182
  if (answers.analytics) {
183
183
  console.log('');
184
184
  console.log(core_1.tags.stripIndent `
185
- Thank you for sharing anonymous usage data. Would you change your mind, the following
185
+ Thank you for sharing anonymous usage data. Should you change your mind, the following
186
186
  command will disable this feature entirely:
187
187
 
188
188
  ${color_1.colors.yellow('ng analytics project off')}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "13.0.0-rc.0",
3
+ "version": "13.0.0-rc.1",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -28,10 +28,10 @@
28
28
  },
29
29
  "homepage": "https://github.com/angular/angular-cli",
30
30
  "dependencies": {
31
- "@angular-devkit/architect": "0.1300.0-rc.0",
32
- "@angular-devkit/core": "13.0.0-rc.0",
33
- "@angular-devkit/schematics": "13.0.0-rc.0",
34
- "@schematics/angular": "13.0.0-rc.0",
31
+ "@angular-devkit/architect": "0.1300.0-rc.1",
32
+ "@angular-devkit/core": "13.0.0-rc.1",
33
+ "@angular-devkit/schematics": "13.0.0-rc.1",
34
+ "@schematics/angular": "13.0.0-rc.1",
35
35
  "@yarnpkg/lockfile": "1.1.0",
36
36
  "ansi-colors": "4.1.1",
37
37
  "debug": "4.3.2",
@@ -51,12 +51,12 @@
51
51
  "ng-update": {
52
52
  "migrations": "@schematics/angular/migrations/migration-collection.json",
53
53
  "packageGroup": {
54
- "@angular/cli": "13.0.0-rc.0",
55
- "@angular-devkit/architect": "0.1300.0-rc.0",
56
- "@angular-devkit/build-angular": "13.0.0-rc.0",
57
- "@angular-devkit/build-webpack": "0.1300.0-rc.0",
58
- "@angular-devkit/core": "13.0.0-rc.0",
59
- "@angular-devkit/schematics": "13.0.0-rc.0"
54
+ "@angular/cli": "13.0.0-rc.1",
55
+ "@angular-devkit/architect": "0.1300.0-rc.1",
56
+ "@angular-devkit/build-angular": "13.0.0-rc.1",
57
+ "@angular-devkit/build-webpack": "0.1300.0-rc.1",
58
+ "@angular-devkit/core": "13.0.0-rc.1",
59
+ "@angular-devkit/schematics": "13.0.0-rc.1"
60
60
  }
61
61
  },
62
62
  "engines": {