Skip to content

Commit 5d34eba

Browse files
Merge pull request #25 from DHTMLX/next
[update] docs version to v3.8.1
2 parents 59e875b + 579adc5 commit 5d34eba

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Deploy To Site
66
on:
77
# Triggers the workflow on push or pull request events but only for the master branch
88
push:
9-
branches: [ master, next ]
9+
branches: [master, next]
1010

1111
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1212
jobs:
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: actions/setup-node@v4
2626
with:
27-
node-version: '18.19.0'
27+
node-version: "20.0"
2828

2929
- run: yarn install
3030
- run: yarn build
@@ -41,4 +41,4 @@ jobs:
4141
push: true
4242
tags: registry.webix.io/booking-docs-alt:${{ steps.vars.outputs.short_ref }}
4343

44-
- run: curl "https://docs.dhtmlx.com/hooks/restart-docker?token=${{ secrets.RESTART_TOKEN }}&project=docs-booking-alt-${{ steps.vars.outputs.short_ref }}"
44+
- run: curl "https://docs.dhtmlx.com/hooks/restart-docker?token=${{ secrets.RESTART_TOKEN }}&project=docs-booking-alt-${{ steps.vars.outputs.short_ref }}"

docusaurus.config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,16 @@ const config = {
137137
url: 'https://docs.dhtmlx.com',
138138
baseUrl: '/booking/',
139139
onBrokenLinks: 'warn',
140-
onBrokenMarkdownLinks: 'warn',
140+
onBrokenMarkdownLinks: 'warn', // deprecated in v3.9.1
141141
favicon: 'img/favicon.ico',
142142
organizationName: 'DHTMLX', // Usually your GitHub org/user name.
143143
projectName: 'docs-booking', // Usually your repo name.
144144
trailingSlash: true,
145+
markdown: {
146+
hooks: {
147+
onBrokenMarkdownLinks: 'warn',
148+
}
149+
},
145150
presets: [
146151
[
147152
'@docusaurus/preset-classic',

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"normalizeLink": "cd plugins && node samplesLinksNormalize.js"
1414
},
1515
"dependencies": {
16-
"@docusaurus/core": "^3.7.0",
17-
"@docusaurus/preset-classic": "^3.7.0",
16+
"@docusaurus/core": "^3.9.1",
17+
"@docusaurus/preset-classic": "^3.9.1",
1818
"@easyops-cn/docusaurus-search-local": "^0.45.0",
1919
"@mdx-js/react": "^3.0.0",
2020
"@svgr/webpack": "^5.5.0",
@@ -38,13 +38,13 @@
3838
]
3939
},
4040
"devDependencies": {
41-
"@docusaurus/module-type-aliases": "^3.7.0",
42-
"@docusaurus/types": "^3.7.0",
41+
"@docusaurus/module-type-aliases": "^3.9.1",
42+
"@docusaurus/types": "^3.9.1",
4343
"dhx-md-data-parser": "file:local_modules/dhx-md-data-parser",
4444
"docusaurus-plugin-sass": "^0.2.5",
4545
"webpack-cli": "^4.4.0"
4646
},
4747
"engines": {
48-
"node": ">=18.0"
48+
"node": ">=20.0"
4949
}
5050
}

0 commit comments

Comments
 (0)