mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.4 KiB
69 lines
2.4 KiB
{
|
|
"name": "storybook",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "packages/storybook",
|
|
"projectType": "library",
|
|
"targets": {
|
|
"build": {
|
|
"outputs": ["{workspaceRoot}/dist/packages/storybook/README.md"],
|
|
"command": "node ./scripts/copy-readme.js storybook"
|
|
},
|
|
"nx-release-publish": {
|
|
"executor": "@nx/js:release-publish",
|
|
"options": {
|
|
"packageRoot": "dist/packages/storybook"
|
|
},
|
|
"dependsOn": ["^nx-release-publish"]
|
|
},
|
|
"legacy-post-build": {
|
|
"executor": "@nx/workspace-plugin:legacy-post-build",
|
|
"options": {
|
|
"tsConfig": "./tsconfig.lib.json",
|
|
"assets": [
|
|
{
|
|
"input": "packages/storybook",
|
|
"glob": "**/files/**",
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "packages/storybook",
|
|
"glob": "**/project-files/.storybook/**",
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "packages/storybook",
|
|
"glob": "**/project-files-ts/.storybook/**",
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "packages/storybook",
|
|
"glob": "**/*.json",
|
|
"ignore": [
|
|
"**/tsconfig*.json",
|
|
"project.json",
|
|
".eslintrc.json",
|
|
"**/test-configs/**"
|
|
],
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "packages/storybook",
|
|
"glob": "**/*.js",
|
|
"ignore": ["**/jest.config.js"],
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "packages/storybook",
|
|
"glob": "**/*.d.ts",
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "",
|
|
"glob": "LICENSE",
|
|
"output": "/"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|