mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
47 lines
891 B
JSON
47 lines
891 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["tsconfig.json"],
|
|
"globalEnv": [
|
|
"IS_VERCEL_ENV",
|
|
"IS_PREVIEW",
|
|
"IS_VA_ENABLED",
|
|
"ENABLE_EXPERIMENTAL_COREPACK",
|
|
"PLAIN_USER_AUTHENTICATED"
|
|
],
|
|
"tasks": {
|
|
"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
|
|
}
|
|
}
|
|
}
|