Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '18'
node-version: '20'
cache: 'npm'
- name: Install Playwright
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "18"
node-version: "20"
cache: "npm"

- name: Install Node.js dependencies and build assets
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '18'
node-version: '20'
cache: 'npm'

- name: Install Playwright
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '18'
node-version: '20'
cache: 'npm'

- name: Install Playwright
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.18.0
20.18.0
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Thank you for your interest in contributing to the QuantEcon Book Theme! This do
### Prerequisites

- Python 3.12 or higher
- Node.js 18.18.0 or higher (see `.nvmrc`)
- Node.js 20.18.0 or higher (see `.nvmrc`)
- Git

### Initial Setup
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Set up a local development environment for `quantecon-book-theme`.
## Prerequisites

- **Python 3.12 or newer**
- **Node.js 18.18.0 or newer** — for compiling SCSS/JS assets with webpack
- **Node.js 20.18.0 or newer** — for compiling SCSS/JS assets with webpack
- **Git**

## Initial Setup
Expand Down
281 changes: 178 additions & 103 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
"devDependencies": {
"@playwright/test": "^1.49.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"css-minimizer-webpack-plugin": "^8.0.0",
"dedent": "^1.7.0",
"html-webpack-plugin": "^5.6.5",
"mini-css-extract-plugin": "^2.9.4",
"sass": "^1.94.2",
"sass": "^1.99.0",
Comment thread
mmcky marked this conversation as resolved.
"sass-loader": "^16.0.6",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["sphinx-theme-builder >= 0.2.0a7"]
build-backend = "sphinx_theme_builder"

[tool.sphinx-theme-builder]
node-version = "18.18.0"
node-version = "20.18.0"
theme-name = "quantecon_book_theme"
additional-compiled-static-assets = [
"locales/"
Expand Down
Loading