Skip to content

Commit

Permalink
[UPDATE] additional work
Browse files Browse the repository at this point in the history
  • Loading branch information
Judimax committed May 3, 2023
1 parent e6ed1c9 commit ea36dc5
Show file tree
Hide file tree
Showing 14 changed files with 2,218 additions and 2,213 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ignore/
2 changes: 1 addition & 1 deletion AngularApp/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/bazel-out
/integration/bazel/bazel-*
*.log
/node_modules/
node_modules/

# CircleCI temporary file for cache key computation.
# See `save_month_to_file` in `.circleci/config.yml`.
Expand Down
36 changes: 10 additions & 26 deletions AngularApp/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@
"sourceRoot": "src",
"prefix": "app",
"architect": {
"judima": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
// "outputPath": "dist/AngularApp",
"outputPath":"../docs",
"outputPath": "../docs",
"fileReplacements": [
{
"replace": "src/app/website.ts",
Expand All @@ -41,19 +40,14 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
"src/assets"
],
"styles": [
"src/styles.scss"
],
"assets": ["src/assets"],
"styles": ["src/styles.scss"],
"scripts": [
"backend/modernizr/modernizr.js",
"backend/polyfills/object.js",
"backend/polyfills/signaturePad.js",
"src/assets/scripts/pikaday.js",
"src/assets/scripts/vanillaTilt.js"

],
"optimization": false,
"sourceMap": true,
Expand All @@ -63,8 +57,8 @@
},
"configurations": {
"production": {
"baseHref":"/Facebook_Project/",
"deployUrl":"/Facebook_Project/",
"baseHref": "/Facebook_Project/",
"deployUrl": "/Facebook_Project/",
"fileReplacements": [
{
"replace": "src/app/website.ts",
Expand All @@ -75,9 +69,7 @@
"with": "src/environments/environment.facebook.prod.ts"
}
],
"assets": [
"src/assets"
],
"assets": ["src/assets"],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
Expand Down Expand Up @@ -122,9 +114,6 @@
}
]
}



}
},
"serve": {
Expand All @@ -133,7 +122,7 @@
"browserTarget": "AngularApp:judima:play",
"port": 4520,
"liveReload": true,
"hmr": false
"hmr": false
},
"configurations": {
"production": {
Expand All @@ -148,7 +137,6 @@
"port": 4521,
"browserTarget": "AngularApp:judima:facebook"
}

}
},
"extract-i18n": {
Expand All @@ -160,12 +148,8 @@
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"tsconfig.app.json"
],
"exclude": [
"**/node_modules/**"
]
"tsConfig": ["tsconfig.app.json"],
"exclude": ["**/node_modules/**"]
}
}
}
Expand Down
Loading

0 comments on commit ea36dc5

Please sign in to comment.