mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-18 05:47:31 -04:00
* refactor: extract restic in core package * chore: add turbo task runner * refactor: split server utils * chore: simplify withDeps signature and fix non-null assertion
19 lines
252 B
JSON
19 lines
252 B
JSON
{
|
|
"$schema": "https://turborepo.dev/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"tsc": {
|
|
"dependsOn": ["^tsc"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^test"]
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|