diff options
author | Pauline <git@ethanlibs.co> | 2023-10-14 14:40:31 -0400 |
---|---|---|
committer | Pauline <git@ethanlibs.co> | 2023-10-14 14:40:31 -0400 |
commit | 06f51ccdc496a6581d098edc424f3973e550221d (patch) | |
tree | b064b8058ef77634dcf2c904a70cdea030884a7a /turbo.json | |
parent | 997b850967df8dc03a7321b167dc9f7b52f98c7a (diff) | |
download | Nexus-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.json | 20 |
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"] +} |