Skip to content

Commit bfb713a

Browse files
committed
add caching inputs for turbo
1 parent d2df006 commit bfb713a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

lazer/publisher_sdk/js/turbo.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,41 @@
1010
},
1111
"build": {
1212
"dependsOn": ["build:cjs", "build:esm"],
13+
"inputs": [
14+
"$TURBO_DEFAULT$",
15+
"!README.md",
16+
"!**/*.test.*",
17+
"!jest.config.js",
18+
"!eslint.config.js",
19+
"!prettier.config.js",
20+
"!vercel.json"
21+
],
1322
"outputs": ["dist/**"]
1423
},
1524
"build:cjs": {
1625
"dependsOn": ["build:proto-codegen", "^build"],
26+
"inputs": [
27+
"$TURBO_DEFAULT$",
28+
"!README.md",
29+
"!**/*.test.*",
30+
"!jest.config.js",
31+
"!eslint.config.js",
32+
"!prettier.config.js",
33+
"!vercel.json"
34+
],
1735
"outputs": ["dist/cjs/**"]
1836
},
1937
"build:esm": {
2038
"dependsOn": ["build:proto-codegen", "^build"],
39+
"inputs": [
40+
"$TURBO_DEFAULT$",
41+
"!README.md",
42+
"!**/*.test.*",
43+
"!jest.config.js",
44+
"!eslint.config.js",
45+
"!prettier.config.js",
46+
"!vercel.json"
47+
],
2148
"outputs": ["dist/esm/**"]
2249
}
2350
}

0 commit comments

Comments
 (0)