Skip to content

Commit

Permalink
Fix Action
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeleppan committed Jan 23, 2024
1 parent cfa194c commit c93e045
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "14.x" # You might need to adjust this value to your own version
node-version: "20.x"
- name: Build
id: build
run: |
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"description": "Counts the words of selected text in the editor.",
"main": "main.js",
"types": "src/api.d.ts",
"files": ["src/api.d.ts"],
"files": [
"src/api.d.ts"
],
"scripts": {
"lint": "svelte-check && eslint . --ext .ts",
"dev": "rollup --config rollup.config.js -w",
Expand All @@ -25,7 +27,6 @@
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/search": "^6.2.2",
"@codemirror/state": "^6.1.2",
"@codemirror/text": "^0.19.6",
"@codemirror/view": "^6.4.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
Expand Down

0 comments on commit c93e045

Please sign in to comment.