aboutsummaryrefslogtreecommitdiff
path: root/turbo.json
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-02-21 16:11:35 -0700
committerDhravya <[email protected]>2024-02-21 16:11:35 -0700
commitcdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526 (patch)
treee0234f7fff63b312f18c945bed37a430d1e68755 /turbo.json
downloadsupermemory-cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526.tar.xz
supermemory-cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526.zip
initialised monorepo with auth and extension communication
Diffstat (limited to 'turbo.json')
-rw-r--r--turbo.json40
1 files changed, 40 insertions, 0 deletions
diff --git a/turbo.json b/turbo.json
new file mode 100644
index 00000000..035043b3
--- /dev/null
+++ b/turbo.json
@@ -0,0 +1,40 @@
+{
+ "$schema": "https://turbo.build/schema.json",
+ "pipeline": {
+ "build": {
+ "outputs": [
+ ".next/**",
+ "!.next/cache/**"
+ ]
+ },
+ "deploy": {
+ "dependsOn": [
+ "build",
+ "test",
+ "lint"
+ ]
+ },
+ "db:push": {},
+ "db:studio" :{},
+ "test": {
+ "dependsOn": [
+ "build"
+ ],
+ "inputs": [
+ "src/**/*.tsx",
+ "src/**/*.ts",
+ "test/**/*.ts",
+ "test/**/*.tsx"
+ ]
+ },
+ "lint": {},
+ "type-check": {},
+ "dev": {
+ "env": [
+ "NODE_ENV=development"
+ ],
+ "cache": false,
+ "persistent": true
+ }
+ }
+} \ No newline at end of file