aboutsummaryrefslogtreecommitdiff
path: root/turbo.json
diff options
context:
space:
mode:
authorPauline <git@ethanlibs.co>2023-10-14 14:40:31 -0400
committerPauline <git@ethanlibs.co>2023-10-14 14:40:31 -0400
commit06f51ccdc496a6581d098edc424f3973e550221d (patch)
treeb064b8058ef77634dcf2c904a70cdea030884a7a /turbo.json
parent997b850967df8dc03a7321b167dc9f7b52f98c7a (diff)
downloadNexus-06f51ccdc496a6581d098edc424f3973e550221d.tar.gz
Nexus-06f51ccdc496a6581d098edc424f3973e550221d.tar.bz2
Nexus-06f51ccdc496a6581d098edc424f3973e550221d.zip
refactor(build): switch to turborepo & bump deps
Diffstat (limited to 'turbo.json')
-rw-r--r--turbo.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/turbo.json b/turbo.json
new file mode 100644
index 0000000..0afb03a
--- /dev/null
+++ b/turbo.json
@@ -0,0 +1,20 @@
+{
+ "$schema": "https://turborepo.org/schema.json",
+ "pipeline": {
+ "build": {
+ "inputs": ["**/*.ts", "!src-tauri/**", "!node_modules/**"],
+ "dependsOn": ["^build"],
+ "outputs": ["dist/**"]
+ },
+ "lint": {
+ "outputs": []
+ },
+ "typecheck": {
+ "outputs": []
+ },
+ "dev": {
+ "cache": false
+ }
+ },
+ "globalEnv": ["PORT", "NODE_ENV"]
+}