diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..59a7a23 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,14 @@ +changelog: + categories: + - title: Features + labels: + - Feature + - title: Fixed + labels: + - Bug + - title: Documentation + labels: + - Documentation + - title: Other + labels: + - "*" diff --git a/CHANGELOG.md b/CHANGELOG.md index f42a3e3..2663044 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,6 @@ All notable changes to the "vue3-vscode-snippets" extension will be documented in this file. -Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. - ## [Unreleased] - Initial release diff --git a/images/vue-logo.png b/images/vue-logo.png new file mode 100644 index 0000000..227a709 Binary files /dev/null and b/images/vue-logo.png differ diff --git a/package.json b/package.json index d891eff..ac2e75d 100644 --- a/package.json +++ b/package.json @@ -2,21 +2,46 @@ "name": "vue3-vscode-snippets", "displayName": "Vue 3 VS Code Snippets", "description": "Vue 3 snippets for VS Code", + "icon": "images/vue-logo.png", "version": "0.0.0", "publisher": "exer7um", + "repository": { + "type": "git", + "url": "https://github.com/ExEr7um/vue3-vscode-snippets.git" + }, "author": { "name": "Vasily Kuzin", - "email": "exer7um@gmail.com" + "email": "exer7um@gmail.com", + "url": "https://github.com/ExEr7um" }, "contributors": [ { "name": "Sarah Drasner", - "email": "sarah.drasner@gmail.com" + "email": "sarah.drasner@gmail.com", + "url": "https://github.com/sdras" + }, + { + "name": "Daniel Kelly", + "email": "me@danielkelly.io", + "url": "https://github.com/danielkellyio" } ], "engines": { "vscode": "^1.69.0" }, + "keywords": [ + "Vue", + "Vue 3", + "Nuxt", + "Nuxt 3", + "Pinia", + "Vue Snippets", + "Vue 3 snippets", + "Nuxt snippets", + "Nuxt 3 snippets", + "Pinia snippets", + "Composition API" + ], "categories": [ "Snippets" ], diff --git a/vsc-extension-quickstart.md b/vsc-extension-quickstart.md deleted file mode 100644 index 2fadf67..0000000 --- a/vsc-extension-quickstart.md +++ /dev/null @@ -1,23 +0,0 @@ -# Welcome to your VS Code Extension - -## What's in the folder - -* This folder contains all of the files necessary for your extension. -* `package.json` - this is the manifest file that defines the location of the snippet file and specifies the language of the snippets. -* `snippets/snippets.code-snippets` - the file containing all snippets. - -## Get up and running straight away - -* Press `F5` to open a new window with your extension loaded. -* Create a new file with a file name suffix matching your language. -* Verify that your snippets are proposed on IntelliSense. - -## Make changes - -* You can relaunch the extension from the debug toolbar after making changes to the files listed above. -* You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes. - -## Install your extension - -* To start using your extension with Visual Studio Code copy it into the `/.vscode/extensions` folder and restart Code. -* To share your extension with the world, read on https://code.visualstudio.com/docs about publishing an extension.