Skip to content

Commit

Permalink
Upgrade to Angular 18
Browse files Browse the repository at this point in the history
  • Loading branch information
philipszdavido committed May 28, 2024
1 parent f121aa4 commit 0630ef8
Show file tree
Hide file tree
Showing 7 changed files with 7,826 additions and 6,843 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

This repository contains the code of the [Angular Core Deep Dive](https://angular-university.io/course/angular-course).

This course repository is updated to Angular 17:
This course repository is updated to Angular 18:

![Angular Core Deep Dive](https://d3vigmphadbn9b.cloudfront.net/course-images/large-images/angular-core-deep-dive-new-2.jpg)

# Installation pre-requisites

IMPORTANT: Please use Node 18 (Long Term Support version).
IMPORTANT: Please use Node 18 LTS (Long Term Support version).

# Installing the Angular CLI

Expand Down
24 changes: 13 additions & 11 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/angular-course",
"outputPath": {
"base": "dist/angular-course"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
Expand All @@ -43,12 +46,11 @@
"inject": true
}
],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
"namedChunks": true,
"browser": "src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -68,9 +70,7 @@
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
"extractLicenses": true
},
"fr": {
"budgets": [
Expand All @@ -79,7 +79,9 @@
"maximumWarning": "6kb"
}
],
"outputPath": "dist/angular-course-fr/",
"outputPath": {
"base": "dist/angular-course-fr/"
},
"i18nFile": "src/locale/messages.fr.xlf",
"i18nLocale": "fr",
"i18nMissingTranslation": "ignore"
Expand Down
Loading

0 comments on commit 0630ef8

Please sign in to comment.