Skip to content

Commit

Permalink
[FE] maintenance fixes (#1963)
Browse files Browse the repository at this point in the history
# Description

This PR includes the following proposed change(s):

- {List all the changes, if possible add the jira ticket #}
  • Loading branch information
carolcarpenter authored Dec 4, 2024
1 parent 5316258 commit 5080b03
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 13 deletions.
22 changes: 10 additions & 12 deletions src/Spd.Presentation.Licensing/ClientApp/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,23 @@
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": {
"base": "dist",
"browser": ""
},
"index": "src/index.html",
"base": "dist",
"browser": ""
},
"index": "src/index.html",
"polyfills": ["zone.js"],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": ["src/favicon.ico", "src/assets"],
"assets": ["src/favicon.ico", "src/assets", "src/maintenance"],
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"node_modules/ngx-spinner/animations/square-jelly-box.css",
"node_modules/@ngxpert/hot-toast/src/styles/styles.css",
"src/scss/app.scss"
],
"scripts": ["node_modules/jquery/dist/jquery.min.js", "node_modules/bootstrap/dist/js/bootstrap.min.js"],
"allowedCommonJsDependencies": [
"moment"
],
"browser": "src/main.ts"
"allowedCommonJsDependencies": ["moment"],
"browser": "src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -59,8 +57,8 @@
"outputHashing": "all",
"baseHref": "/licensing/"
},
"development": {
"optimization": false,
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand Down Expand Up @@ -92,7 +90,7 @@
"polyfills": ["zone.js", "zone.js/testing"],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": ["src/favicon.ico", "src/assets"],
"assets": ["src/favicon.ico", "src/assets", "src/maintenance"],
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"node_modules/ngx-spinner/animations/square-jelly-box.css",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@

export enum ControllingMemberAppInviteTypeCode {
New = 'New',
Update = 'Update'
Update = 'Update',
CreateShellApp = 'CreateShellApp'
}

0 comments on commit 5080b03

Please sign in to comment.