Skip to content

Commit

Permalink
feat(angular): support angular 18.0.0-next.2 (#22795)
Browse files Browse the repository at this point in the history
  • Loading branch information
leosvelperez authored Apr 12, 2024
1 parent 4daeb98 commit ed2dab2
Show file tree
Hide file tree
Showing 6 changed files with 763 additions and 878 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@angular-devkit/architect": "~0.1800.0-next.0",
"@angular-devkit/build-angular": "~18.0.0-next.0",
"@angular-devkit/core": "~18.0.0-next.0",
"@angular-devkit/schematics": "~18.0.0-next.0",
"@angular-devkit/architect": "~0.1800.0-next.2",
"@angular-devkit/build-angular": "~18.0.0-next.2",
"@angular-devkit/core": "~18.0.0-next.2",
"@angular-devkit/schematics": "~18.0.0-next.2",
"@angular-eslint/eslint-plugin": "~17.3.0",
"@angular-eslint/eslint-plugin-template": "~17.3.0",
"@angular-eslint/template-parser": "~17.3.0",
"@angular/cli": "~18.0.0-next.0",
"@angular/common": "~18.0.0-next.1",
"@angular/compiler": "~18.0.0-next.1",
"@angular/compiler-cli": "~18.0.0-next.1",
"@angular/core": "~18.0.0-next.1",
"@angular/router": "~18.0.0-next.1",
"@angular/cli": "~18.0.0-next.2",
"@angular/common": "~18.0.0-next.4",
"@angular/compiler": "~18.0.0-next.4",
"@angular/compiler-cli": "~18.0.0-next.4",
"@angular/core": "~18.0.0-next.4",
"@angular/router": "~18.0.0-next.4",
"@babel/core": "^7.23.2",
"@babel/helper-create-regexp-features-plugin": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.23.2",
Expand Down Expand Up @@ -93,7 +93,7 @@
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-url": "^7.0.0",
"@schematics/angular": "~18.0.0-next.0",
"@schematics/angular": "~18.0.0-next.2",
"@side/jest-runtime": "^1.1.0",
"@storybook/addon-essentials": "7.5.3",
"@storybook/core-server": "7.5.3",
Expand Down
30 changes: 15 additions & 15 deletions packages/angular/migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -387,13 +387,13 @@
"description": "Update the @angular/cli package version to ~17.3.0.",
"factory": "./src/migrations/update-18-2-0/update-angular-cli"
},
"update-angular-cli-version-18-0-0-next-0": {
"update-angular-cli-version-18-0-0-next-2": {
"cli": "nx",
"version": "19.1.0-beta.0",
"requires": {
"@angular/core": ">=18.0.0-next.1"
"@angular/core": ">=18.0.0-next.4"
},
"description": "Update the @angular/cli package version to ~18.0.0-next.0.",
"description": "Update the @angular/cli package version to ~18.0.0-next.2.",
"factory": "./src/migrations/update-19-1-0/update-angular-cli"
}
},
Expand Down Expand Up @@ -1819,51 +1819,51 @@
"version": "19.1.0-beta.0",
"x-prompt": "Do you want to update the Angular version to v18?",
"requires": {
"@angular/core": ">=17.3.0 <18.0.0-next.1"
"@angular/core": ">=17.3.0 <18.0.0-next.4"
},
"packages": {
"@angular-devkit/build-angular": {
"version": "~18.0.0-next.0",
"version": "~18.0.0-next.2",
"alwaysAddToPackageJson": false
},
"@angular-devkit/core": {
"version": "~18.0.0-next.0",
"version": "~18.0.0-next.2",
"alwaysAddToPackageJson": false
},
"@angular-devkit/schematics": {
"version": "~18.0.0-next.0",
"version": "~18.0.0-next.2",
"alwaysAddToPackageJson": false
},
"@angular/pwa": {
"version": "~18.0.0-next.0",
"version": "~18.0.0-next.2",
"alwaysAddToPackageJson": false
},
"@angular/ssr": {
"version": "~18.0.0-next.0",
"version": "~18.0.0-next.2",
"alwaysAddToPackageJson": false
},
"@schematics/angular": {
"version": "~18.0.0-next.0",
"version": "~18.0.0-next.2",
"alwaysAddToPackageJson": false
},
"@angular-devkit/architect": {
"version": "~0.1800.0-next.0",
"version": "~0.1800.0-next.2",
"alwaysAddToPackageJson": false
},
"@angular-devkit/build-webpack": {
"version": "~0.1800.0-next.0",
"version": "~0.1800.0-next.2",
"alwaysAddToPackageJson": false
},
"@angular/core": {
"version": "~18.0.0-next.1",
"version": "~18.0.0-next.4",
"alwaysAddToPackageJson": true
},
"@angular/material": {
"version": "~18.0.0-next.1",
"version": "~18.0.0-next.4",
"alwaysAddToPackageJson": false
},
"@angular/cdk": {
"version": "~18.0.0-next.1",
"version": "~18.0.0-next.4",
"alwaysAddToPackageJson": false
},
"ng-packagr": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { formatFiles, Tree, updateJson } from '@nx/devkit';

export const angularCliVersion = '~18.0.0-next.0';
export const angularCliVersion = '~18.0.0-next.2';

export default async function (tree: Tree) {
let shouldFormat = false;
Expand Down
4 changes: 2 additions & 2 deletions packages/angular/src/utils/versions.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const nxVersion = require('../../package.json').version;

export const angularVersion = '~18.0.0-next.1';
export const angularDevkitVersion = '~18.0.0-next.0';
export const angularVersion = '~18.0.0-next.4';
export const angularDevkitVersion = '~18.0.0-next.2';
export const ngPackagrVersion = '~18.0.0-next.1';
export const ngrxVersion = '~17.0.0';
export const rxjsVersion = '~7.8.0';
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace/src/utils/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ export const typescriptVersion = '~5.4.2';

// TODO: remove when preset generation is reworked and
// deps are not installed from workspace
export const angularCliVersion = '~18.0.0-next.0';
export const angularCliVersion = '~18.0.0-next.2';
Loading

0 comments on commit ed2dab2

Please sign in to comment.