Skip to content

Commit ec03f06

Browse files
committed
chore: move bun to top level
Assisted-by: CopilotCLI:claude-haiku-4.5 Signed-off-by: Henry Schreiner <henryfs@princeton.edu>
1 parent 6e513c9 commit ec03f06

5 files changed

Lines changed: 16 additions & 4 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ docs/assets/js/repo-review-app.min.js.map
148148
# NodeJS stuff, just in case (developer tooling)
149149
node_modules/
150150
package-lock.json
151-
package.json
152151

153152
# readthedocs
154153
_readthedocs

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ The noxfile generates temporary projects for **all 9 backends** × **vcs on/off*
7171

7272
- Migrated from Jekyll to [MyST](https://mystmd.org) (JupyterBook 2.0) using the
7373
`scientific-python-myst-theme`.
74-
- Node/Bun-based; from `docs/`, run `bun install` then `bun run build` to build
75-
the site.
74+
- Node/Bun-based; from the repo root, run `bun install` then `bun run build` to
75+
build the site.
7676
- Config: `docs/myst.yml` (TOC, project settings),
7777
`docs/config/scientific-python.yml` (theme options).
7878
- Custom plugin: `docs/rr-role.mjs` — provides `{rr}` inline role for
File renamed without changes.

docs/myst.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ project:
3030
- file: pages/guides/gha_pure.md
3131
- file: pages/guides/gha_wheels.md
3232
- file: pages/guides/tasks.md
33-
- file: pages/guides/repo_review.md
3433
- file: pages/principles/index.md
3534
children:
3635
- file: pages/principles/process.md
@@ -41,6 +40,7 @@ project:
4140
- file: pages/patterns/exports.md
4241
- file: pages/patterns/backports.md
4342
- file: pages/patterns/data_files.md
43+
- file: pages/guides/repo_review.md
4444

4545
site:
4646
nav:

package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "scientific-python-cookie-docs",
3+
"private": true,
4+
"type": "module",
5+
"scripts": {
6+
"build": "cd docs && myst build --html",
7+
"serve": "cd docs && myst start",
8+
"clean": "rm -rf docs/_build"
9+
},
10+
"dependencies": {
11+
"mystmd": "^1.0"
12+
}
13+
}

0 commit comments

Comments
 (0)