mirror of https://github.com/buster-so/buster.git
19 lines
436 B
JSON
19 lines
436 B
JSON
{
|
|||
"$schema": "https://turborepo.com/schema.json",
|
|||
"extends": ["//"],
|
|||
"tasks": {
|
|||
"build:commonjs": {
|
|||
"cache": false,
|
|||
"persistent": false,
|
|||
"outputs": ["dist/**"],
|
|||
"dependsOn": ["@buster/database#build:commonjs"]
|
|||
},
|
|||
"build:commonjs:watch": {
|
|||
"cache": false,
|
|||
"persistent": true,
|
|||
"with": ["@buster/database#build:commonjs:watch"],
|
|||
"dependsOn": ["build:commonjs"]
|
|||
}
|
|||
}
|
|||
}
|