forked from dralletje/Notebook-Experiments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
36 lines (34 loc) · 943 Bytes
/
turbo.json
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
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
// A package's `build` script depends on that package's
// dependencies and devDependencies
// `build` tasks being completed first
// (the `^` symbol signifies `upstream`).
"dependsOn": ["^build"],
// note: output globs are relative to each package's `package.json`
// (and not the monorepo root)
"outputs": [
"dist/**",
// Zig...
// TODO Make zig put it's build stuff in `dist`
"main.wasm",
"main.wasm.o",
"zig-cache",
"zig-out",
// For paintbrush.. why can't I do this per package???
"src/in-page-editor-build"
],
"inputs": [
"src/**",
"package.json",
"index.html",
"postcss.config.js",
"tailwindo.config.js",
"vite.config.js",
"rollup.config.js"
]
}
}
}