Skip to content

Commit

Permalink
refactor: update to angular v18
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Update Angular to v18 and others libs

refactor: update Angular Material to v18

chore: update package-lock and test
  • Loading branch information
alecarn committed Sep 17, 2024
1 parent e73280e commit 9f6f822
Show file tree
Hide file tree
Showing 14 changed files with 5,042 additions and 7,386 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gh-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:

- name: Zip output
run: zip -qq -r igo2.zip *
working-directory: dist/igo2
working-directory: dist/igo2/browser

- name: Release
uses: softprops/action-gh-release@v1
with:
body_path: ${{ github.workspace }}-CHANGELOG.txt
files: dist/igo2/igo2.zip
files: dist/igo2/browser/igo2.zip
token: ${{ secrets.GITHUB_TOKEN }}
28 changes: 5 additions & 23 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@
},
"architect": {
"build": {
"defaultConfiguration": "developpement",
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"aot": true,
"outputPath": "dist/igo2",
"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 Down Expand Up @@ -90,7 +88,8 @@
"striptags",
"ts-md5",
"typy"
]
],
"browser": "src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -112,8 +111,6 @@
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": true,
"buildOptimizer": false,
"serviceWorker": false
},
"production-link": {
Expand All @@ -135,8 +132,6 @@
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": true,
"buildOptimizer": false,
"serviceWorker": false,
"assets": [
"src/favicon.ico",
Expand Down Expand Up @@ -175,17 +170,13 @@
]
},
"developpement": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
},
"developpement-link": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true,
Expand Down Expand Up @@ -244,8 +235,6 @@
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": true,
"buildOptimizer": false,
"serviceWorker": false
},
"pwa": {
Expand All @@ -267,10 +256,7 @@
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": true,
"buildOptimizer": false,
"serviceWorker": true,
"ngswConfigPath": "ngsw-config.json"
"serviceWorker": "ngsw-config.json"
}
}
},
Expand Down Expand Up @@ -384,10 +370,6 @@
"@angular-eslint/schematics",
"@schematics/angular"
],
"cache": {
"enabled": false,
"environment": "all"
},
"analytics": false
}
}
Loading

0 comments on commit 9f6f822

Please sign in to comment.