diff --git a/CHANGELOG.md b/CHANGELOG.md index 993bac7..8078471 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to the "vue-vscode-snippets" extension will be documented in this file. +## 3.1.1 + +- Update README + +## 3.1.0 + +- Remove any extension dependencies + +## 3.0.0 + +- Vetur -> Volar, extension dependencies + ## 2.2.1 - remove name of package for composition api now that we're at vue 3 diff --git a/LICENSE b/LICENSE index a5414ee..dd378c9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Sarah Drasner +Copyright (c) 2022 Sarah Drasner Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index baaad3f..f440a8f 100644 --- a/README.md +++ b/README.md @@ -28,13 +28,6 @@ ext install Vue VSCode Snippets You can enable tab completion (recommended) by opening `Code > Preferences > Settings` (on a Mac) and applying `"editor.tabCompletion": "onlySnippets"` to your personal settings -### Volar Usage - -This extension works out of the box with Vetur, but if you would rather use Volar, either remove `extensionDependencies` or set it to `volar` instead of `vetur`. You can find this file in the extensions package.json (with [versionnumber] replaced with the current installed version, i.e. 2.2.1): - -- Mac: `~/.vscode/extensions/sdras.vue-vscode-snippets-[versionnumber]/package.json` -- Windows: `C:\Users\\.vscode\extensions\sdras.vue-vscode-snippets-[versionnumber]` - ## Snippets ### Vue @@ -176,7 +169,6 @@ This extension works out of the box with Vetur, but if you would rather use Vola | `nfont` | link to include fonts in a nuxt project, in nuxt-config | | `ncss` | link to css assets such as normalize | - ### Nuxt Page | Snippet | Purpose | diff --git a/package.json b/package.json index 4f05606..c5d44d3 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Vue VSCode Snippets", "description": "Snippets that will supercharge your Vue workflow", "icon": "images/vue-logo.png", - "version": "2.2.1", + "version": "3.1.1", "publisher": "sdras", "engines": { "vscode": "^1.14.0" @@ -23,9 +23,6 @@ "Composition API", "Vue Snippets" ], - "extensionDependencies": [ - "octref.vetur" - ], "categories": [ "Snippets" ],