Skip to content

Commit

Permalink
Merge pull request #123 from nivekcode/feature/angular19
Browse files Browse the repository at this point in the history
feat: 🎸 migrate to Angular 19
  • Loading branch information
nivekcode authored Dec 12, 2024
2 parents d48e676 + 4f53a53 commit 4c18b05
Show file tree
Hide file tree
Showing 20 changed files with 3,644 additions and 3,984 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Node & NPM
uses: actions/setup-node@v3
- name: Install node modules
run: npm ci
- name: Test
Expand Down
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 4c18b05

Please sign in to comment.