forked from rivet-dev/secure-exec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
37 lines (37 loc) · 1016 Bytes
/
turbo.json
File metadata and controls
37 lines (37 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build:bridge": {
"outputs": ["dist/bridge.js"]
},
"build:polyfills": {
"outputs": ["src/generated/polyfills.ts"]
},
"build:isolate-runtime": {
"outputs": ["dist/isolate-runtime/**", "src/generated/isolate-runtime.ts"]
},
"build:wasm": {
"dependsOn": [],
"inputs": ["wasmvm/**/*.rs", "wasmvm/Cargo.toml", "wasmvm/patches/**"],
"outputs": ["wasmvm/target/wasm32-wasip1/release/multicall.opt.wasm"]
},
"build": {
"dependsOn": ["^build", "build:bridge", "build:polyfills", "build:isolate-runtime"],
"outputs": ["dist/**"]
},
"check-types": {
"dependsOn": ["^build", "build:polyfills", "build:isolate-runtime"]
},
"test": {
"dependsOn": ["^build", "build:polyfills", "build:isolate-runtime"]
},
"test:watch": {
"cache": false,
"persistent": true
},
"dev": {
"cache": false,
"persistent": true
}
}
}