Skip to content

Commit 8b1de24

Browse files
Update documentation generation to include npm ci step (#387)
The Makefile now ensures dependencies are installed before generating documentation. This change avoids potential issues with missing or outdated packages during the documentation process.
1 parent e2c0405 commit 8b1de24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ format license-check lint test: ci
4444
for x in $(pkgs); do (cd $$x && npm run $@) || exit 1; done
4545

4646
doc:
47-
cd lib && npm run doc
47+
cd lib && npm ci && npm run doc

0 commit comments

Comments
 (0)