Skip to content

Release v0.2.0 #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to the "vue3-vscode-snippets" extension will be documented in this file.

## `v0.2.0`

### Features

* Add more `Nuxt` snippets @ExEr7um in <https://github.com/ExEr7um/vue3-vscode-snippets/pull/28>
* Add `Pinia` composition store snippets by @ExEr7um in <https://github.com/ExEr7um/vue3-vscode-snippets/pull/29>
* Add `Histoire` snippets by @ExEr7um in <https://github.com/ExEr7um/vue3-vscode-snippets/pull/31>
* Add `Vue Transition CSS` snippets by @ExEr7um in <https://github.com/ExEr7um/vue3-vscode-snippets/pull/32>

## `v0.1.1`

### Fixed
Expand Down
70 changes: 31 additions & 39 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,25 +81,21 @@ These snippets were made to speed up Vue 3 development. With it you can write bo

### CSS

| Snippet | Purpose |
| ---------------------------------- | -------------------------------------------- |
| ⚠️ `vcss-transition` | Vue Transition styles |
| ⚠️ `vcss-transition-named` | Vue Named Transition styles |
| ⚠️ `vcss-transition-tailwind` | Vue Transition styles for Tailwind CSS |
| ⚠️ `vcss-transition-named-tailwind` | Vue Named Transition styles for Tailwind CSS |
| ⚠️ `vcss-transition-group` | Vue Transition Group styles |
| ⚠️ `vcss-transition-group-tailwind` | Vue Transition Group styles for Tailwind CSS |

> Snippets with ⚠️ symbol are unreleased.
| Snippet | Purpose |
| -------------------------------- | -------------------------------------------- |
| `vcss-transition` | Vue Transition styles |
| `vcss-transition-named` | Vue Named Transition styles |
| `vcss-transition-tailwind` | Vue Transition styles for Tailwind CSS |
| `vcss-transition-named-tailwind` | Vue Named Transition styles for Tailwind CSS |
| `vcss-transition-group` | Vue Transition Group styles |
| `vcss-transition-group-tailwind` | Vue Transition Group styles for Tailwind CSS |

### Pinia

| Snippet | Purpose |
| ---------------------- | ------------------------------------------------------------ |
| `pstore` | Base code needed for a Pinia store file |
| ⚠️ `pstore-composition` | Base code needed for a Pinia store file with Composition API |

> Snippets with ⚠️ symbol are unreleased.
| Snippet | Purpose |
| -------------------- | ------------------------------------------------------------ |
| `pstore` | Base code needed for a Pinia store file |
| `pstore-composition` | Base code needed for a Pinia store file with Composition API |

### Vue Router

Expand Down Expand Up @@ -135,32 +131,28 @@ These snippets were made to speed up Vue 3 development. With it you can write bo
| `nhead-template` | `useHead` composable with title template |
| `npagemeta` | `definePageMeta` composable |
| `npagemeta-description` | `definePageMeta` composable with description |
| ⚠️ `nplugin` | Base code for Nuxt plugin |
| ⚠️ `nmiddleware` | Base code for Nuxt middleware |
| ⚠️ `nserverroute` | Base code for Nuxt server route |

> Snippets with ⚠️ symbol are unreleased.
| `nplugin` | Base code for Nuxt plugin |
| `nmiddleware` | Base code for Nuxt middleware |
| `nserverroute` | Base code for Nuxt server route |

### Histoire

| Snippet | Purpose |
| ------------------------- | ------------------------------------ |
| ⚠️ `hconfig` | Histoire config for Vue 3 |
| ⚠️ `hconfig-nuxt` | Histoire config for Nuxt 3 |
| ⚠️ `hbase` | Base code for story |
| ⚠️ `hbase-variant` | Base code for story with variant |
| ⚠️ `hbase-grid` | Base code for story with grid layout |
| ⚠️ `hvariant` | Story variant |
| ⚠️ `hgrid` | Histoire grid layout |
| ⚠️ `hcontrols-base` | Histoire controls base |
| ⚠️ `hcontrols-button` | Histoire controls - Button |
| ⚠️ `hcontrols-buttongroup` | Histoire controls - Button Group |
| ⚠️ `hcontrols-checkbox` | Histoire controls - Checkbox |
| ⚠️ `hcontrols-number` | Histoire controls - Number |
| ⚠️ `hcontrols-text` | Histoire controls - Text |
| ⚠️ `hcontrols-textarea` | Histoire controls - Textarea |

> Snippets with ⚠️ symbol are unreleased.
| Snippet | Purpose |
| ----------------------- | ------------------------------------ |
| `hconfig` | Histoire config for Vue 3 |
| `hconfig-nuxt` | Histoire config for Nuxt 3 |
| `hbase` | Base code for story |
| `hbase-variant` | Base code for story with variant |
| `hbase-grid` | Base code for story with grid layout |
| `hvariant` | Story variant |
| `hgrid` | Histoire grid layout |
| `hcontrols-base` | Histoire controls base |
| `hcontrols-button` | Histoire controls - Button |
| `hcontrols-buttongroup` | Histoire controls - Button Group |
| `hcontrols-checkbox` | Histoire controls - Checkbox |
| `hcontrols-number` | Histoire controls - Number |
| `hcontrols-text` | Histoire controls - Text |
| `hcontrols-textarea` | Histoire controls - Textarea |

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Vue 3 VS Code Snippets",
"description": "Vue 3 snippets for VS Code",
"icon": "images/vue-logo.png",
"version": "0.1.1",
"version": "0.2.0",
"publisher": "exer7um",
"repository": {
"type": "git",
Expand Down