From 4e497089f2d12f9c63e96c6a0acf656d3ab7afde Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Sun, 2 Jul 2023 22:10:50 +0200 Subject: [PATCH] feat: add turbo task for "start" Signed-off-by: Tilman Vatteroth --- dev-reverse-proxy/package.json | 3 ++- package.json | 1 + turbo.json | 5 +++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-reverse-proxy/package.json b/dev-reverse-proxy/package.json index c567c3f12..51f675ae9 100644 --- a/dev-reverse-proxy/package.json +++ b/dev-reverse-proxy/package.json @@ -4,6 +4,7 @@ "private": true, "license": "AGPL-3.0", "scripts": { - "start:dev": "caddy run || ./caddy run" + "start:dev": "caddy run || ./caddy run", + "start": "caddy run || ./caddy run" } } diff --git a/package.json b/package.json index 57b6451b9..a7aee91f5 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "lint": "dotenv -- turbo run lint", "format": "dotenv -- turbo run format", "start:dev": "dotenv -- turbo run start:dev", + "start": "dotenv -- turbo run start", "test:ci": "dotenv -- turbo run test:ci", "test": "dotenv -- turbo run test" }, diff --git a/turbo.json b/turbo.json index ecfc2d9d4..f94a9e087 100644 --- a/turbo.json +++ b/turbo.json @@ -106,6 +106,11 @@ ], "cache": false, "persistent": true + }, + + "start": { + "cache": false, + "persistent": true } } }