fix: devshell commands for docs

Signed-off-by: Brian McGee <brian@bmcgee.ie>
This commit is contained in:
Brian McGee 2024-05-01 09:14:43 +01:00
parent 311e46a409
commit 6c66daf26b
Signed by: brianmcgee
GPG Key ID: D49016E76AD1E8C0

View File

@ -35,19 +35,19 @@ _: {
inherit category;
name = "docs:dev";
help = "serve docs for local development";
command = "cd $PRJ_ROOT/docs && npm dev";
command = "cd $PRJ_ROOT/docs && npm run dev";
}
{
inherit category;
name = "docs:build";
help = "create a production build of docs";
command = "cd $PRJ_ROOT/docs && npm build";
command = "cd $PRJ_ROOT/docs && npm run build";
}
{
inherit category;
name = "docs:preview";
help = "preview a production build of docs";
command = "cd $PRJ_ROOT/docs && npm preview";
command = "cd $PRJ_ROOT/docs && npm run preview";
}
{
inherit category;