Skip to content

Commit c46332e

Browse files
committed
Fix for #50.
1 parent e2e5d64 commit c46332e

File tree

3 files changed

+76
-49
lines changed

3 files changed

+76
-49
lines changed

.github/workflows/build-docs.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,29 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [20.x]
15+
node-version: [22.x]
1616

1717
steps:
1818
- name: Checkout ✅
19-
uses: actions/checkout@v4.1.7
19+
uses: actions/checkout@v4.2.2
2020

2121
- name: Use Node.js ${{ matrix.node-version }} ⚡
22-
uses: actions/setup-node@v4.0.3
22+
uses: actions/setup-node@v4.1.0
2323
with:
2424
node-version: ${{ matrix.node-version }}
2525

26+
- name: Install pnpm 🎁
27+
uses: pnpm/action-setup@v4
28+
with:
29+
version: 9
30+
2631
- name: Build 🔧
2732
run: |
2833
pnpm install
2934
pnpm run build:docs
3035
3136
- name: Deploy to gh-pages 🚀
32-
uses: JamesIves/[email protected].3
37+
uses: JamesIves/[email protected].8
3338
with:
3439
branch: gh-pages # The branch the action should deploy to.
3540
folder: docs # The folder the action should deploy.

package.json

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "vue-codemirror6",
4-
"version": "1.3.6",
4+
"version": "1.3.7",
55
"license": "MIT",
66
"description": "CodeMirror6 Component for vue2 and vue3.",
77
"keywords": [
@@ -89,7 +89,7 @@
8989
"@codemirror/autocomplete": "^6.18.2",
9090
"@codemirror/lang-javascript": "^6.2.2",
9191
"@codemirror/lang-json": "^6.0.1",
92-
"@codemirror/lang-markdown": "^6.3.0",
92+
"@codemirror/lang-markdown": "^6.3.1",
9393
"@codemirror/lang-vue": "^0.1.3",
9494
"@codemirror/search": "^6.5.7",
9595
"@eslint/js": "^9.14.0",
@@ -139,13 +139,7 @@
139139
"*": "prettier -w -u"
140140
},
141141
"resolutions": {
142-
"braces": ">=3.0.3",
143142
"json5": ">=2.2.3",
144-
"ip": ">=2.0.1",
145-
"lodash": ">=4.17.21",
146-
"postcss": ">=8.4.31",
147-
"semver": ">=7.5.3",
148-
"tar": ">=6.2.1",
149-
"yaml": ">=2.3.2"
143+
"yaml": ">=2.6.0"
150144
}
151145
}

pnpm-lock.yaml

+64-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)