Skip to content

Commit

Permalink
Merge pull request #91 from lebesnec/feature/angular18
Browse files Browse the repository at this point in the history
Feature/angular18
  • Loading branch information
lebesnec authored Sep 18, 2024
2 parents 7c4f42a + f52f7a3 commit aedfbe3
Show file tree
Hide file tree
Showing 21 changed files with 4,694 additions and 4,265 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: main
folder: dist/solar-system
folder: dist/solar-system/browser
repository-name: lebesnec/solar-system-develop
token: ${{ secrets.SOLAR_SYSTEM_DEVELOP_TOKEN }}

2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: gh-pages
folder: dist/solar-system
folder: dist/solar-system/browser

25 changes: 15 additions & 10 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/solar-system",
"outputPath": {
"base": "dist/solar-system"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
"assets": [
"src/en.manifest.json",
Expand All @@ -25,16 +28,20 @@
"src/assets"
],
"styles": [
"src/custom-theme.scss",
"src/m3-theme.scss",
"src/styles.css"
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
"namedChunks": true,
"browser": "src/main.ts",
"stylePreprocessorOptions": {
"includePaths": [
"."
]
}
},
"configurations": {
"production": {
Expand All @@ -49,8 +56,6 @@
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
Expand Down
Loading

0 comments on commit aedfbe3

Please sign in to comment.