* fix turbo dev command errors * Create forty-elephants-attack.md --------- Co-authored-by: Justin Halsall <Juice10@users.noreply.github.com>
21 lines
419 B
JSON
21 lines
419 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"baseBranch": "origin/master",
|
|
"pipeline": {
|
|
"prepublish": {
|
|
"dependsOn": ["^prepublish"],
|
|
"outputs": ["lib/**", "es/**", "dist/**", "typings/**"]
|
|
},
|
|
"test": {},
|
|
"test:watch": {
|
|
"persistent": true
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^prepublish"],
|
|
"persistent": true
|
|
},
|
|
"lint": {},
|
|
"check-types": {}
|
|
}
|
|
}
|