37
turbo.json
37
turbo.json
@@ -1,21 +1,42 @@
|
||||
{
|
||||
"$schema": "https://turborepo.org/schema.json",
|
||||
"baseBranch": "origin/master",
|
||||
"pipeline": {
|
||||
// These root workspace files are reused in workspaces and may affect their build output
|
||||
"globalDependencies": [
|
||||
".eslintrc.js",
|
||||
".prettierrc",
|
||||
"lerna.json",
|
||||
"vite.config.defaults.ts",
|
||||
"tsconfig.json"
|
||||
],
|
||||
"tasks": {
|
||||
"prepublish": {
|
||||
"dependsOn": ["^prepublish"],
|
||||
"outputs": ["lib/**", "es/**", "dist/**", "typings/**"]
|
||||
"outputs": [
|
||||
"lib/**",
|
||||
"es/**",
|
||||
"dist/**",
|
||||
"typings/**",
|
||||
".svelte-kit/**",
|
||||
"types/**"
|
||||
]
|
||||
},
|
||||
"test": {
|
||||
"dependsOn": ["^prepublish"]
|
||||
"dependsOn": ["^prepublish"],
|
||||
"passThroughEnv": ["PUPPETEER_HEADLESS"]
|
||||
},
|
||||
"test:watch": {
|
||||
"persistent": true
|
||||
"persistent": true,
|
||||
"passThroughEnv": ["PUPPETEER_HEADLESS"]
|
||||
},
|
||||
"test:update": {},
|
||||
"dev": {
|
||||
"test:update": {
|
||||
"dependsOn": ["^prepublish"],
|
||||
"persistent": true
|
||||
"passThroughEnv": ["PUPPETEER_HEADLESS"]
|
||||
},
|
||||
"dev": {
|
||||
// "dependsOn": ["^prepublish"],
|
||||
"persistent": true,
|
||||
"cache": false,
|
||||
"passThroughEnv": ["CLEAR_DIST_DIR"]
|
||||
},
|
||||
"lint": {},
|
||||
"check-types": {}
|
||||
|
||||
Reference in New Issue
Block a user