feat: add turbo task for "start"

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-07-02 22:10:50 +02:00
parent cbbfa8c43c
commit 4e497089f2
3 changed files with 8 additions and 1 deletions

View file

@ -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"
}
}

View file

@ -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"
},

View file

@ -106,6 +106,11 @@
],
"cache": false,
"persistent": true
},
"start": {
"cache": false,
"persistent": true
}
}
}