From c93e045c213875c07bf8ceca4d960c3d4a57cec9 Mon Sep 17 00:00:00 2001 From: Luke Leppan Date: Tue, 23 Jan 2024 16:31:28 +0200 Subject: [PATCH] Fix Action --- .github/workflows/release.yml | 2 +- package.json | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cdf5180..df9d56a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: | diff --git a/package.json b/package.json index d15071b..f6a442a 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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",