Skip to content

Commit cf8edd1

Browse files
fix(build): Add missing source path to jupyter-book build command
The build command was missing the target directory argument (.), causing it to fail to generate output. This lead to the copy step failing.
1 parent 319df3d commit cf8edd1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build": "tsc -b && vite build",
99
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
1010
"preview": "vite preview",
11-
"build:book": "cd jupyter-books && uv run jupyter-book build",
11+
"build:book": "cd jupyter-books && uv run jupyter-book build .",
1212
"copy:book": "shx mkdir -p public/notes && shx cp -r jupyter-books/_build/html/* public/notes/"
1313
},
1414
"dependencies": {

0 commit comments

Comments
 (0)