-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): upgrade everything a second time
In time between a few weeks ago and now, Angular 17 came out and Nx upgraded to it, so, here's a second big upgrade. Keeping separate in case anything during the second one.
- Loading branch information
Showing
4 changed files
with
4,861 additions
and
5,687 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,101 @@ | ||
{ | ||
"migrations": [ | ||
{ | ||
"cli": "nx", | ||
"version": "16.5.0-beta.2", | ||
"description": "Add test-setup.ts to ignored files in production input", | ||
"implementation": "./src/migrations/update-16-5-0/add-test-setup-to-inputs-ignore", | ||
"version": "17.1.0-beta.1", | ||
"description": "Updates for @typescript-utils/utils v6.9.1+", | ||
"implementation": "./src/migrations/update-17-1-0/update-typescript-eslint", | ||
"package": "@nx/linter", | ||
"name": "update-typescript-eslint" | ||
}, | ||
{ | ||
"version": "17.1.0-beta.2", | ||
"description": "Move jest executor options to nx.json targetDefaults", | ||
"implementation": "./src/migrations/update-17-1-0/move-options-to-target-defaults", | ||
"package": "@nx/jest", | ||
"name": "add-test-setup-to-inputs-ignore" | ||
"name": "move-options-to-target-defaults" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "17.1.0-beta.5", | ||
"requires": { | ||
"@angular/core": ">=17.0.0" | ||
}, | ||
"description": "Update the @angular/cli package version to ~17.0.0.", | ||
"factory": "./src/migrations/update-17-1-0/update-angular-cli", | ||
"package": "@nx/angular", | ||
"name": "update-angular-cli-version-17-0-0" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "17.1.0-beta.5", | ||
"requires": { | ||
"@angular/core": ">=17.0.0" | ||
}, | ||
"description": "Rename 'browserTarget' to 'buildTarget'.", | ||
"factory": "./src/migrations/update-17-1-0/browser-target-to-build-target", | ||
"package": "@nx/angular", | ||
"name": "rename-browser-target-to-build-target" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "17.1.0-beta.5", | ||
"requires": { | ||
"@angular/core": ">=17.0.0" | ||
}, | ||
"description": "Replace usages of '@nguniversal/builders' with '@angular-devkit/build-angular'.", | ||
"factory": "./src/migrations/update-17-1-0/replace-nguniversal-builders", | ||
"package": "@nx/angular", | ||
"name": "replace-nguniversal-builders" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "17.1.0-beta.5", | ||
"requires": { | ||
"@angular/core": ">=17.0.0" | ||
}, | ||
"description": "Replace usages of '@nguniversal/' packages with '@angular/ssr'.", | ||
"factory": "./src/migrations/update-17-1-0/replace-nguniversal-engines", | ||
"package": "@nx/angular", | ||
"name": "replace-nguniversal-engines" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "17.1.0-beta.5", | ||
"requires": { | ||
"@angular/core": ">=17.0.0" | ||
}, | ||
"description": "Replace the deep imports from 'zone.js/dist/zone' and 'zone.js/dist/zone-testing' with 'zone.js' and 'zone.js/testing'.", | ||
"factory": "./src/migrations/update-17-1-0/update-zone-js-deep-import", | ||
"package": "@nx/angular", | ||
"name": "update-zone-js-deep-import" | ||
}, | ||
{ | ||
"version": "17.0.0", | ||
"description": "Angular v17 introduces a new control flow syntax that uses the @ and } characters. This migration replaces the existing usages with their corresponding HTML entities.", | ||
"factory": "./migrations/block-template-entities/bundle", | ||
"package": "@angular/core", | ||
"name": "block-template-entities" | ||
}, | ||
{ | ||
"version": "17.0.0", | ||
"description": "CompilerOption.useJit and CompilerOption.missingTranslation are unused under Ivy. This migration removes their usage", | ||
"factory": "./migrations/compiler-options/bundle", | ||
"package": "@angular/core", | ||
"name": "migration-v17-compiler-options" | ||
}, | ||
{ | ||
"version": "17.0.0", | ||
"description": "Updates `TransferState`, `makeStateKey`, `StateKey` imports from `@angular/platform-browser` to `@angular/core`.", | ||
"factory": "./migrations/transfer-state/bundle", | ||
"package": "@angular/core", | ||
"name": "migration-transfer-state" | ||
}, | ||
{ | ||
"version": "17.0.0-0", | ||
"description": "Updates the Angular CDK to v17", | ||
"factory": "./ng-update/index#updateToV17", | ||
"package": "@angular/cdk", | ||
"name": "migration-v17" | ||
} | ||
] | ||
} |
Oops, something went wrong.