Skip to content

Commit

Permalink
Merge pull request #727 from hubmapconsortium/cde-visualization-wc-bu…
Browse files Browse the repository at this point in the history
…ild-output-fix

fix(cde): 🚑 Fix cde-visualization-wc build output path
  • Loading branch information
axdanbol authored Sep 19, 2024
2 parents 92cc8bf + 6311e7c commit c00e0f3
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions apps/cde-visualization-wc/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"tags": ["app", "cde", "webcomponent"],
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:application",
"outputs": ["{options.outputPath}"],
"executor": "@nx/angular:application",
"outputs": ["{options.outputPath.base}"],
"options": {
"outputPath": {
"base": "dist/apps/cde-visualization-wc",
Expand All @@ -25,21 +25,22 @@
"define": {
"define": "undefined"
},
"outputHashing": "none"
"outputHashing": "none",
"allowedCommonJsDependencies": ["papaparse", "vega-embed"]
},
"configurations": {
"production": {
"baseHref": "/ui/cde-visualization-wc/",
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "4mb"
"maximumWarning": "4mb",
"maximumError": "8mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "10kb"
"maximumWarning": "10kb",
"maximumError": "20kb"
}
]
},
Expand All @@ -62,7 +63,7 @@
"defaultConfiguration": "production"
},
"serve": {
"executor": "@angular-devkit/build-angular:dev-server",
"executor": "@nx/angular:dev-server",
"configurations": {
"production": {
"buildTarget": "cde-visualization-wc:build:production"
Expand Down

0 comments on commit c00e0f3

Please sign in to comment.