Skip to content

Commit 249f807

Browse files
committed
fix: install node dependencies in devshell commands
Signed-off-by: Brian McGee <[email protected]>
1 parent 0dd4344 commit 249f807

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nix/docs.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ _: {
3535
inherit category;
3636
name = "docs:dev";
3737
help = "serve docs for local development";
38-
command = "cd $PRJ_ROOT/docs && npm run dev";
38+
command = "cd $PRJ_ROOT/docs && npm ci && npm run dev";
3939
}
4040
{
4141
inherit category;
4242
name = "docs:build";
4343
help = "create a production build of docs";
44-
command = "cd $PRJ_ROOT/docs && npm run build";
44+
command = "cd $PRJ_ROOT/docs && npm ci && npm run build";
4545
}
4646
{
4747
inherit category;
4848
name = "docs:preview";
4949
help = "preview a production build of docs";
50-
command = "cd $PRJ_ROOT/docs && npm run preview";
50+
command = "cd $PRJ_ROOT/docs && npm ci && npm run preview";
5151
}
5252
{
5353
inherit category;

0 commit comments

Comments
 (0)