fix: migrate turbo.json

turbo v2 changed the turbo.json file somewhat. This PR address this.
See: https://turbo.build/repo/docs/crafting-your-repository/upgrading

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2024-08-31 12:48:45 +02:00
parent 03a388c6f9
commit 09641c14f6

View file

@ -1,6 +1,6 @@
{ {
"$schema": "https://turbo.build/schema.json", "$schema": "https://turbo.build/schema.json",
"pipeline": { "tasks": {
"build": {}, "build": {},
"@hedgedoc/html-to-react#build": { "@hedgedoc/html-to-react#build": {
"dependsOn": [ "dependsOn": [
@ -49,7 +49,6 @@
"NODEJS_VERSION" "NODEJS_VERSION"
] ]
}, },
"build:test": {}, "build:test": {},
"@hedgedoc/frontend#build:test": { "@hedgedoc/frontend#build:test": {
"dependsOn": [ "dependsOn": [
@ -63,7 +62,6 @@
"NODEJS_VERSION" "NODEJS_VERSION"
] ]
}, },
"lint": { "lint": {
"dependsOn": [ "dependsOn": [
"^build" "^build"
@ -74,15 +72,12 @@
"^build" "^build"
] ]
}, },
"format": {}, "format": {},
"test": { "test": {
"dependsOn": [ "dependsOn": [
"^build" "^build"
] ]
}, },
"test:ci": { "test:ci": {
"dependsOn": [ "dependsOn": [
"^build" "^build"
@ -94,7 +89,6 @@
"coverage/**" "coverage/**"
] ]
}, },
"test:e2e:ci": {}, "test:e2e:ci": {},
"@hedgedoc/frontend#test:e2e:ci": { "@hedgedoc/frontend#test:e2e:ci": {
"dependsOn": [ "dependsOn": [
@ -115,7 +109,6 @@
"coverage-e2e/**" "coverage-e2e/**"
] ]
}, },
"start:dev": { "start:dev": {
"dependsOn": [ "dependsOn": [
"^build" "^build"
@ -123,11 +116,9 @@
"cache": false, "cache": false,
"persistent": true "persistent": true
}, },
"start": { "start": {
"cache": false, "cache": false,
"persistent": true "persistent": true
} }
} }
} }