Skip to content

Commit

Permalink
Merge pull request #429 from BellumGens/player-profile-update
Browse files Browse the repository at this point in the history
feat: setting up new player profile
  • Loading branch information
kdinev authored Dec 12, 2024
2 parents 5d0c41d + fc5ec53 commit 4ebfbb3
Show file tree
Hide file tree
Showing 36 changed files with 1,174 additions and 925 deletions.
125 changes: 21 additions & 104 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,16 @@
"@angular/localize/init"
],
"tsConfig": "projects/bellumgens/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"projects/bellumgens/src/favicon.ico",
"projects/bellumgens/src/assets",
"projects/bellumgens/src/web.config",
"projects/bellumgens/src/robots.txt",
"projects/bellumgens/src/manifest.json"
],
"styles": [
"projects/bellumgens/src/styles.scss"
],
"extractLicenses": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true,
"stylePreprocessorOptions": {
"includePaths": [
"node_modules"
Expand Down Expand Up @@ -77,14 +73,15 @@
],
"outputMode": "server",
"localize": true,
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"serviceWorker": "projects/bellumgens/src/ngsw-config.json",
"i18nMissingTranslation": "error"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
},
"bg": {
"localize": [
"bg"
Expand All @@ -103,6 +100,9 @@
},
"bg": {
"buildTarget": "bellum-gens:build:bg"
},
"development": {
"buildTarget": "ssr-test:build:development"
}
}
},
Expand All @@ -122,6 +122,7 @@
],
"tsConfig": "projects/bellumgens/tsconfig.spec.json",
"karmaConfig": "projects/bellumgens/karma.conf.js",
"inlineStyleLanguage": "scss",
"styles": [
"projects/bellumgens/src/styles.scss"
],
Expand Down Expand Up @@ -152,49 +153,6 @@
]
}
},
"server": {
"builder": "@angular-devkit/build-angular:server",
"options": {
"outputPath": "dist/bellumgens/server",
"main": "projects/bellumgens/server.ts",
"tsConfig": "projects/bellumgens/tsconfig.server.json",
"inlineStyleLanguage": "scss",
"sourceMap": true,
"optimization": false,
"buildOptimizer": false
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "projects/common/src/environments/environment.ts",
"with": "projects/common/src/environments/environment.prod.ts"
}
],
"sourceMap": false,
"optimization": true,
"stylePreprocessorOptions": {
"includePaths": [
"node_modules"
]
},
"buildOptimizer": true
}
}
},
"serve-ssr": {
"builder": "@angular-devkit/build-angular:ssr-dev-server",
"options": {
"browserTarget": "bellum-gens:build",
"serverTarget": "bellum-gens:server"
},
"configurations": {
"production": {
"browserTarget": "bellum-gens:build:production",
"serverTarget": "bellum-gens:server:production"
}
}
},
"cypress-run": {
"builder": "@cypress/schematic:cypress",
"options": {
Expand Down Expand Up @@ -257,23 +215,20 @@
},
"polyfills": [
"zone.js",
"hammerjs",
"@angular/localize/init"
],
"tsConfig": "projects/ebleague/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"projects/ebleague/src/favicon.ico",
"projects/ebleague/src/assets",
"projects/ebleague/src/web.config",
"projects/ebleague/src/robots.txt",
"projects/ebleague/src/manifest.json"
],
"styles": [
"projects/ebleague/src/styles.scss"
],
"extractLicenses": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true,
"stylePreprocessorOptions": {
"includePaths": [
"node_modules"
Expand Down Expand Up @@ -301,18 +256,19 @@
],
"outputMode": "server",
"localize": true,
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"serviceWorker": "projects/ebleague/src/ngsw-config.json",
"i18nMissingTranslation": "error"
},
"bg": {
"localize": [
"bg"
]
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
}
},
Expand All @@ -327,6 +283,9 @@
},
"bg": {
"buildTarget": "eb-league:build:bg"
},
"development": {
"buildTarget": "ssr-test:build:development"
}
}
},
Expand All @@ -346,6 +305,7 @@
],
"tsConfig": "projects/ebleague/tsconfig.spec.json",
"karmaConfig": "projects/ebleague/karma.conf.js",
"inlineStyleLanguage": "scss",
"styles": [
"projects/ebleague/src/styles.scss"
],
Expand Down Expand Up @@ -376,49 +336,6 @@
]
}
},
"server": {
"builder": "@angular-devkit/build-angular:server",
"options": {
"outputPath": "dist/ebleague/server",
"main": "projects/ebleague/server.ts",
"tsConfig": "projects/ebleague/tsconfig.server.json",
"inlineStyleLanguage": "scss",
"sourceMap": true,
"optimization": false,
"buildOptimizer": false
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "projects/common/src/environments/environment.ts",
"with": "projects/common/src/environments/environment.prod.ts"
}
],
"sourceMap": false,
"optimization": true,
"stylePreprocessorOptions": {
"includePaths": [
"node_modules"
]
},
"buildOptimizer": true
}
}
},
"serve-ssr": {
"builder": "@angular-devkit/build-angular:ssr-dev-server",
"options": {
"browserTarget": "eb-league:build",
"serverTarget": "eb-league:server"
},
"configurations": {
"production": {
"browserTarget": "eb-league:build:production",
"serverTarget": "eb-league:server:production"
}
}
},
"cypress-run": {
"builder": "@cypress/schematic:cypress",
"options": {
Expand Down
Loading

0 comments on commit 4ebfbb3

Please sign in to comment.