mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
feat: add turbo task for "start"
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
cbbfa8c43c
commit
4e497089f2
3 changed files with 8 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
||||||
"private": true,
|
"private": true,
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start:dev": "caddy run || ./caddy run"
|
"start:dev": "caddy run || ./caddy run",
|
||||||
|
"start": "caddy run || ./caddy run"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"lint": "dotenv -- turbo run lint",
|
"lint": "dotenv -- turbo run lint",
|
||||||
"format": "dotenv -- turbo run format",
|
"format": "dotenv -- turbo run format",
|
||||||
"start:dev": "dotenv -- turbo run start:dev",
|
"start:dev": "dotenv -- turbo run start:dev",
|
||||||
|
"start": "dotenv -- turbo run start",
|
||||||
"test:ci": "dotenv -- turbo run test:ci",
|
"test:ci": "dotenv -- turbo run test:ci",
|
||||||
"test": "dotenv -- turbo run test"
|
"test": "dotenv -- turbo run test"
|
||||||
},
|
},
|
||||||
|
|
|
@ -106,6 +106,11 @@
|
||||||
],
|
],
|
||||||
"cache": false,
|
"cache": false,
|
||||||
"persistent": true
|
"persistent": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"start": {
|
||||||
|
"cache": false,
|
||||||
|
"persistent": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue