Skip to content

build: update to TypeScript 5.2 and Angular 17 #27792

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integration/ng-add-standalone/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ node_integration_test(

# Generate a new standalone project with the default options.
# Skip installation since we installed the dependencies already.
"yarn ng new --defaults --standalone --skip-install --style=scss --name=%s" % APP_NAME,
"yarn ng new --defaults --standalone --skip-install --style=scss --skip-git --name=%s" % APP_NAME,
# Delete the package.json that the CLI generated since we want to use the existing one.
"rm -f %s/package.json" % APP_NAME,
# Delete the Karma config since we need to use a headless browser.
Expand Down
9 changes: 3 additions & 6 deletions integration/ng-add-standalone/_angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/ng-add-standalone",
"index": "src/index.html",
"main": "src/main.ts",
"browser": "src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
Expand All @@ -51,12 +51,9 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
"sourceMap": true
}
},
"defaultConfiguration": "production"
Expand Down
22 changes: 11 additions & 11 deletions integration/ng-add-standalone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^16.0.0-next.7",
"@angular/animations": "^17.0.0-next.4",
"@angular/cdk": "file:../../dist/releases/cdk",
"@angular/common": "^16.0.0-next.7",
"@angular/compiler": "^16.0.0-next.7",
"@angular/core": "^16.0.0-next.7",
"@angular/forms": "^16.0.0-next.7",
"@angular/common": "^17.0.0-next.4",
"@angular/compiler": "^17.0.0-next.4",
"@angular/core": "^17.0.0-next.4",
"@angular/forms": "^17.0.0-next.4",
"@angular/material": "file:../../dist/releases/material",
"@angular/platform-browser": "^16.0.0-next.7",
"@angular/platform-browser-dynamic": "^16.0.0-next.7",
"@angular/router": "^16.0.0-next.7",
"@angular/platform-browser": "^17.0.0-next.4",
"@angular/platform-browser-dynamic": "^17.0.0-next.4",
"@angular/router": "^17.0.0-next.4",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.0-next.7",
"@angular/cli": "~16.0.0-next.7",
"@angular/compiler-cli": "^16.0.0-next.7",
"@angular-devkit/build-angular": "^17.0.0-next.4",
"@angular/cli": "^17.0.0-next.4",
"@angular/compiler-cli": "^17.0.0-next.4",
"@types/jasmine": "~4.3.0",
"jasmine-core": "~4.6.0",
"karma": "~6.4.0",
Expand Down
Loading