aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-npm/turbo.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-npm/turbo.json')
-rw-r--r--examples/with-npm/turbo.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/with-npm/turbo.json b/examples/with-npm/turbo.json
new file mode 100644
index 0000000..f01e7ce
--- /dev/null
+++ b/examples/with-npm/turbo.json
@@ -0,0 +1,16 @@
+{
+ "$schema": "https://turbo.build/schema.json",
+ "globalDependencies": ["**/.env.*local"],
+ "pipeline": {
+ "build": {
+ "dependsOn": ["^build"],
+ "outputs": ["dist/**", ".next/**", "!.next/cache/**"]
+ },
+ "lint": {
+ "outputs": []
+ },
+ "dev": {
+ "cache": false
+ }
+ }
+}