nextui/turbo.json
Junior Garcia d794225cb7
Pr/1224 (#1301)
* 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>
2023-08-06 15:04:26 -03:00

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
}
}
}