From 06f51ccdc496a6581d098edc424f3973e550221d Mon Sep 17 00:00:00 2001 From: Pauline Date: Sat, 14 Oct 2023 14:40:31 -0400 Subject: refactor(build): switch to turborepo & bump deps --- turbo.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 turbo.json (limited to 'turbo.json') 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"] +} -- cgit