File tree Expand file tree Collapse file tree 3 files changed +76
-49
lines changed Expand file tree Collapse file tree 3 files changed +76
-49
lines changed Original file line number Diff line number Diff line change @@ -12,24 +12,29 @@ jobs:
12
12
13
13
strategy :
14
14
matrix :
15
- node-version : [20 .x]
15
+ node-version : [22 .x]
16
16
17
17
steps :
18
18
- name : Checkout ✅
19
- uses : actions/checkout@v4.1.7
19
+ uses : actions/checkout@v4.2.2
20
20
21
21
- name : Use Node.js ${{ matrix.node-version }} ⚡
22
- uses : actions/setup-node@v4.0.3
22
+ uses : actions/setup-node@v4.1.0
23
23
with :
24
24
node-version : ${{ matrix.node-version }}
25
25
26
+ - name : Install pnpm 🎁
27
+ uses : pnpm/action-setup@v4
28
+ with :
29
+ version : 9
30
+
26
31
- name : Build 🔧
27
32
run : |
28
33
pnpm install
29
34
pnpm run build:docs
30
35
31
36
- name : Deploy to gh-pages 🚀
32
- uses : JamesIves/github-pages-deploy-action@v4.6.3
37
+ uses : JamesIves/github-pages-deploy-action@v4.6.8
33
38
with :
34
39
branch : gh-pages # The branch the action should deploy to.
35
40
folder : docs # The folder the action should deploy.
Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " https://json.schemastore.org/package.json" ,
3
3
"name" : " vue-codemirror6" ,
4
- "version" : " 1.3.6 " ,
4
+ "version" : " 1.3.7 " ,
5
5
"license" : " MIT" ,
6
6
"description" : " CodeMirror6 Component for vue2 and vue3." ,
7
7
"keywords" : [
89
89
"@codemirror/autocomplete" : " ^6.18.2" ,
90
90
"@codemirror/lang-javascript" : " ^6.2.2" ,
91
91
"@codemirror/lang-json" : " ^6.0.1" ,
92
- "@codemirror/lang-markdown" : " ^6.3.0 " ,
92
+ "@codemirror/lang-markdown" : " ^6.3.1 " ,
93
93
"@codemirror/lang-vue" : " ^0.1.3" ,
94
94
"@codemirror/search" : " ^6.5.7" ,
95
95
"@eslint/js" : " ^9.14.0" ,
139
139
"*" : " prettier -w -u"
140
140
},
141
141
"resolutions" : {
142
- "braces" : " >=3.0.3" ,
143
142
"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"
150
144
}
151
145
}
You can’t perform that action at this time.
0 commit comments