Skip to content

Commit

Permalink
Refix "Storybook - fix project config (#28085)" (#28144)
Browse files Browse the repository at this point in the history
  • Loading branch information
pomahtri authored Oct 14, 2024
1 parent a64be34 commit 98c9ff4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/react-storybook/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
"options": {
"script": "build"
},
"outputs": ["storybook-static"]
"outputs": ["{projectRoot}/storybook-static"]
},
"start": {
"executor": "nx:run-script",
"options": {
"script": "start"
},
"dependsOn": []
"dependsOn": ["^build"]
}
},
"tags": []
Expand Down
14 changes: 14 additions & 0 deletions packages/devextreme-react/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@
"sourceRoot": "packages/devextreme-react",
"projectType": "library",
"targets": {
"build": {
"executor": "nx:run-script",
"dependsOn": ["^build"],
"options": {
"script": "pack"
},
"inputs": [
"default"
],
"outputs": [
"{projectRoot}/npm"
],
"cache": true
},
"pack": {
"executor": "nx:run-script",
"options": {
Expand Down

0 comments on commit 98c9ff4

Please sign in to comment.