forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
37 lines (37 loc) · 1.05 KB
/
project.json
File metadata and controls
37 lines (37 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "public-docsite-v9",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"implicitDependencies": ["tag:type:stories"],
"tags": ["platform:web", "vNext"],
"targets": {
"build-storybook": {
"dependsOn": [
{
"projects": [
"react-storybook-addon",
"react-storybook-addon-export-to-sandbox",
"storybook-llms-extractor",
"react-alert",
"react-infobutton",
"react-virtualizer"
],
"target": "build"
}
]
},
"build-storybook:docsite": {
"inputs": ["default", "{workspaceRoot}/.storybook/**", "{projectRoot}/.storybook/**"],
"outputs": ["{projectRoot}/dist/react"],
"executor": "nx:noop",
"dependsOn": [
"build-storybook",
"build-storybook:react",
{
"projects": ["chart-docsite", "web-components", "react-headless-components-preview-stories"],
"target": "build-storybook:docsite"
}
]
}
}
}