mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* chore: storybook migration * chore: storybook migration * chore: storybook migration * fix: moved options in arg types out of control * fix: fixed type issues * fix: renamed sb:start script to start * chore: migrate csf 2 to csf 3 * fix: removed storybook build from root build script * chore: kick * chore(root): pnpm lock updated * chore(root): new changeset --------- Co-authored-by: Jakob Guddas <github@jguddas.de>
41 lines
776 B
JSON
41 lines
776 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"baseBranch": "origin/main",
|
|
"globalDependencies": ["tsconfig.json"],
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "dist/**", "lib/**", "storybook-static/**"]
|
|
},
|
|
"build:fast": {
|
|
"outputs": ["dist/**"],
|
|
"dependsOn": ["^build:fast"]
|
|
},
|
|
"typecheck": {
|
|
"cache": false,
|
|
"dependsOn": ["^typecheck"]
|
|
},
|
|
"start": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"],
|
|
"outputs": []
|
|
},
|
|
"clean": {
|
|
"cache": false,
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"sb": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|