Skip to content

Commit c93e045

Browse files
committed
Fix Action
1 parent cfa194c commit c93e045

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Use Node.js
1919
uses: actions/setup-node@v1
2020
with:
21-
node-version: "14.x" # You might need to adjust this value to your own version
21+
node-version: "20.x"
2222
- name: Build
2323
id: build
2424
run: |

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
"description": "Counts the words of selected text in the editor.",
55
"main": "main.js",
66
"types": "src/api.d.ts",
7-
"files": ["src/api.d.ts"],
7+
"files": [
8+
"src/api.d.ts"
9+
],
810
"scripts": {
911
"lint": "svelte-check && eslint . --ext .ts",
1012
"dev": "rollup --config rollup.config.js -w",
@@ -25,7 +27,6 @@
2527
"@codemirror/language": "https://github.com/lishid/cm-language",
2628
"@codemirror/search": "^6.2.2",
2729
"@codemirror/state": "^6.1.2",
28-
"@codemirror/text": "^0.19.6",
2930
"@codemirror/view": "^6.4.0",
3031
"@rollup/plugin-commonjs": "^15.1.0",
3132
"@rollup/plugin-node-resolve": "^9.0.0",

0 commit comments

Comments
 (0)