Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-bompart committed May 30, 2024
1 parent 8298c98 commit 8362e31
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions packages/atomic/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,33 @@
"outputs": [],
"executor": "nx:noop"
},
"create-generated-folder": {
"executor": "nx:run-commands",
"options": {
"commands": ["node ./scripts/create-generated-folder.mjs"],
"cwd": "{projectRoot}"
}
},
"build:locales": {
"dependsOn": ["create-generated-folder"],
"executor": "nx:run-commands",
"options": {
"commands": [
"node ./scripts/create-generated-folder.mjs",
"node ./scripts/split-locales.mjs",
"node ./scripts/copy-dayjs-locales.mjs",
"node ./scripts/list-assets.mjs"
"node ./scripts/copy-dayjs-locales.mjs"
],
"parallel": false,
"cwd": "{projectRoot}"
}
},
"list-assets": {
"dependsOn": ["cached:build:stencil"],
"executor": "nx:run-commands",
"options": {
"commands": ["node ./scripts/list-assets.mjs"],
"cwd": "{projectRoot}"
}
},
"dev": {
"dependsOn": ["storybook", "stencil:dev", "cem:dev"]
},
Expand Down Expand Up @@ -115,7 +129,7 @@
}
},
"build-storybook": {
"dependsOn": ["cached:build:stencil", "cem:build"],
"dependsOn": ["cached:build:stencil", "cem:build", "list-assets"],
"executor": "@nx/storybook:build",
"outputs": ["{options.outputDir}"],
"cwd": "{projectRoot}",
Expand Down

0 comments on commit 8362e31

Please sign in to comment.