* Chore: Delete unused lerna.json file * Chore: Remove lerna.json from turbo config * Create nasty-scissors-reply.md
44 lines
997 B
JSON
44 lines
997 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
// These root workspace files are reused in workspaces and may affect their build output
|
|
"globalDependencies": [
|
|
".eslintrc.js",
|
|
".prettierrc",
|
|
"vite.config.defaults.ts",
|
|
"tsconfig.json"
|
|
],
|
|
"tasks": {
|
|
"prepublish": {
|
|
"dependsOn": ["^prepublish"],
|
|
"outputs": [
|
|
"lib/**",
|
|
"es/**",
|
|
"dist/**",
|
|
"typings/**",
|
|
".svelte-kit/**",
|
|
"types/**"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^prepublish"],
|
|
"passThroughEnv": ["PUPPETEER_HEADLESS"]
|
|
},
|
|
"test:watch": {
|
|
"persistent": true,
|
|
"passThroughEnv": ["PUPPETEER_HEADLESS"]
|
|
},
|
|
"test:update": {
|
|
"dependsOn": ["^prepublish"],
|
|
"passThroughEnv": ["PUPPETEER_HEADLESS"]
|
|
},
|
|
"dev": {
|
|
// "dependsOn": ["^prepublish"],
|
|
"persistent": true,
|
|
"cache": false,
|
|
"passThroughEnv": ["CLEAR_DIST_DIR"]
|
|
},
|
|
"lint": {},
|
|
"check-types": {}
|
|
}
|
|
}
|