Skip to content

Commit

Permalink
fix: package dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Helias committed Apr 3, 2024
1 parent 126f3d3 commit 48dcedf
Show file tree
Hide file tree
Showing 4 changed files with 22,148 additions and 25,143 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: "16.15.1"
- name: Build 🔨
run: |
npm install -g @angular/cli@11 --legacy-peer-deps
npm install -g @angular/cli@10 --legacy-peer-deps
npm install --legacy-peer-deps
ng build --prod --base-href=""
- name: Deploy 🚀
Expand Down
24 changes: 5 additions & 19 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"assets": ["src/favicon.ico", "src/assets"],
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"node_modules/font-awesome/css/font-awesome.css",
Expand All @@ -49,7 +46,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
Expand Down Expand Up @@ -99,22 +95,14 @@
"src/styles.scss"
],
"scripts": [],
"assets": [
"src/favicon.ico",
"src/assets"
]
"assets": ["src/favicon.ico", "src/assets"]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
"tsConfig": ["src/tsconfig.app.json", "src/tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
}
}
}
Expand All @@ -140,9 +128,7 @@
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": "e2e/tsconfig.e2e.json",
"exclude": [
"**/node_modules/**"
]
"exclude": ["**/node_modules/**"]
}
}
}
Expand Down
Loading

0 comments on commit 48dcedf

Please sign in to comment.