Skip to content

Commit a41f4b4

Browse files
authored
Merge pull request #856 from Chia-Network/dependabot/npm_and_yarn/docusaurus/core-3.9.1
Bump @docusaurus/core from 3.8.1 to 3.9.1
2 parents fa4cdee + 512e703 commit a41f4b4

File tree

8 files changed

+1495
-2174
lines changed

8 files changed

+1495
-2174
lines changed

.github/workflows/crowdin-pull.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ concurrency:
2222
jobs:
2323
pull-from-crowdin:
2424
runs-on: [k8s-public]
25-
container: node:18
25+
container: node:20
2626
env:
2727
localization_branch_name: l10n_crowdin_translations
2828
steps:

.github/workflows/crowdin-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
jobs:
1414
push-to-crowdin:
1515
runs-on: [k8s-public]
16-
container: node:18
16+
container: node:20
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v5

.github/workflows/deploy-pages.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
deploy:
1414
runs-on: ubuntu-latest
15-
container: node:18-alpine
15+
container: node:20-alpine
1616
steps:
1717
- name: 'Install deps'
1818
run: |
@@ -29,7 +29,6 @@ jobs:
2929
- name: 'npm install and build'
3030
run: |
3131
npm ci
32-
npm install
3332
npm run build
3433
- name: 'npm deploy'
3534
run: |

.github/workflows/deploy-review.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
3232
build:
3333
runs-on: ubuntu-latest
34-
container: node:18-alpine
34+
container: node:20-alpine
3535
steps:
3636
- name: 'Install deps'
3737
run: |
@@ -41,7 +41,6 @@ jobs:
4141
- name: 'npm install and build'
4242
run: |
4343
npm ci
44-
npm install
4544
npm run build
4645
- name: Check for Prettier issues
4746
run: npm run check:prettier

docusaurus.config.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const math = require('remark-math');
2-
const katex = require('rehype-katex');
1+
const math = require('remark-math').default;
2+
const katex = require('rehype-katex').default;
33
/** @type {import('@docusaurus/types').DocusaurusConfig} */
44
(
55
module.exports = {
@@ -9,7 +9,11 @@ const katex = require('rehype-katex');
99
url: 'https://docs.chia.net',
1010
baseUrl: '/',
1111
onBrokenLinks: 'warn',
12-
onBrokenMarkdownLinks: 'warn',
12+
markdown: {
13+
hooks: {
14+
onBrokenMarkdownLinks: 'warn',
15+
},
16+
},
1317
favicon: '/svg/chia-leaf.svg',
1418
organizationName: 'Chia-Network',
1519
projectName: 'chia-docs',

0 commit comments

Comments
 (0)