diff --git a/.vscodeignore b/.vscodeignore index 6a650f5..6204f52 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -4,5 +4,6 @@ node_modules src/**/*.ts src/features +docs/ *.vsix **/*.js.map \ No newline at end of file diff --git a/docs/README.md b/docs/README.md index b0f286a..83b760c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -105,7 +105,6 @@ __Setting:__ `elmLand.feature.goToSymbol` You can navigate symbols inside a file. This is helpful for quickly navigating among functions, values and types in a file. The Outline panel below the file tree in the sidebar also displays all functions, values and types in the file. -![Go to symbol](./go-to-symbol.gif) --- @@ -115,7 +114,6 @@ __Setting:__ `elmLand.feature.openSymbolByName` You can navigate to any top-level declaration in any file, which is a quick way of getting to the right file. -![Open symbol by name](./open-symbol-by-name.gif) --- diff --git a/elm-land-0.2.5.vsix b/elm-land-0.2.5.vsix deleted file mode 100644 index ebf32ad..0000000 Binary files a/elm-land-0.2.5.vsix and /dev/null differ diff --git a/elm-land-0.3.0.vsix b/elm-land-0.3.0.vsix new file mode 100644 index 0000000..64d28bc Binary files /dev/null and b/elm-land-0.3.0.vsix differ diff --git a/package.json b/package.json index 3ed736f..84d7f4e 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "elm-land", "displayName": "Elm Land", "description": "A fast, reliable, and customizable plugin for the Elm language.", - "version": "0.2.5", + "version": "0.3.0", "icon": "src/elm-land-plugin.png", "publisher": "elm-land", "repository": "https://github.com/elm-land/vscode", @@ -16,7 +16,7 @@ "build:typescript": "tsc", "watch": "npm run build && npm run watch:typescript", "watch:typescript": "tsc -w", - "package": "npx vsce package", + "package": "vsce package", "vscode:prepublish": "npm run build" }, "categories": [ @@ -165,6 +165,7 @@ "devDependencies": { "@types/node": "18.11.18", "@types/vscode": "1.74.0", + "@vscode/vsce": "3.2.1", "chokidar-cli": "3.0.0", "terser": "5.16.3", "typescript": "4.9.4"