We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dd4344 commit 249f807Copy full SHA for 249f807
nix/docs.nix
@@ -35,19 +35,19 @@ _: {
35
inherit category;
36
name = "docs:dev";
37
help = "serve docs for local development";
38
- command = "cd $PRJ_ROOT/docs && npm run dev";
+ command = "cd $PRJ_ROOT/docs && npm ci && npm run dev";
39
}
40
{
41
42
name = "docs:build";
43
help = "create a production build of docs";
44
- command = "cd $PRJ_ROOT/docs && npm run build";
+ command = "cd $PRJ_ROOT/docs && npm ci && npm run build";
45
46
47
48
name = "docs:preview";
49
help = "preview a production build of docs";
50
- command = "cd $PRJ_ROOT/docs && npm run preview";
+ command = "cd $PRJ_ROOT/docs && npm ci && npm run preview";
51
52
53
0 commit comments