Skip to content

Commit

Permalink
feat: 🎸 migrate to Angular 19
Browse files Browse the repository at this point in the history
BREAKING CHANGE: 🧨 Angular 19 is now the required dep

✅ Closes: #122
  • Loading branch information
nivekcode committed Dec 12, 2024
1 parent d48e676 commit 7ad4b1a
Show file tree
Hide file tree
Showing 19 changed files with 10,975 additions and 8,913 deletions.
18 changes: 9 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,15 @@
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/ng-sortgrid-demo",
"outputPath": {
"base": "dist/ng-sortgrid-demo"
},
"index": "projects/ng-sortgrid-demo/src/index.html",
"main": "projects/ng-sortgrid-demo/src/main.ts",
"polyfills": "projects/ng-sortgrid-demo/src/polyfills.ts",
"polyfills": [
"projects/ng-sortgrid-demo/src/polyfills.ts"
],
"tsConfig": "projects/ng-sortgrid-demo/tsconfig.app.json",
"assets": [
"projects/ng-sortgrid-demo/src/favicon.ico",
Expand All @@ -51,12 +54,11 @@
"node_modules/@fortawesome/fontawesome-free/css/all.css"
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
"namedChunks": true,
"browser": "projects/ng-sortgrid-demo/src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -71,8 +73,6 @@
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
Expand Down
Loading

0 comments on commit 7ad4b1a

Please sign in to comment.