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