Skip to content

Commit 267bca6

Browse files
authoredOct 15, 2022
release: Release v0.2.0 (#33)
* Update version in package.json * Update changelog * Update README
1 parent 0b59486 commit 267bca6

File tree

3 files changed

+41
-40
lines changed

3 files changed

+41
-40
lines changed
 

‎CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

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

5+
## `v0.2.0`
6+
7+
### Features
8+
9+
* Add more `Nuxt` snippets @ExEr7um in <https://github.com/ExEr7um/vue3-vscode-snippets/pull/28>
10+
* Add `Pinia` composition store snippets by @ExEr7um in <https://github.com/ExEr7um/vue3-vscode-snippets/pull/29>
11+
* Add `Histoire` snippets by @ExEr7um in <https://github.com/ExEr7um/vue3-vscode-snippets/pull/31>
12+
* Add `Vue Transition CSS` snippets by @ExEr7um in <https://github.com/ExEr7um/vue3-vscode-snippets/pull/32>
13+
514
## `v0.1.1`
615

716
### Fixed

‎README.md

+31-39
Original file line numberDiff line numberDiff line change
@@ -81,25 +81,21 @@ These snippets were made to speed up Vue 3 development. With it you can write bo
8181

8282
### CSS
8383

84-
| Snippet | Purpose |
85-
| ---------------------------------- | -------------------------------------------- |
86-
| ⚠️ `vcss-transition` | Vue Transition styles |
87-
| ⚠️ `vcss-transition-named` | Vue Named Transition styles |
88-
| ⚠️ `vcss-transition-tailwind` | Vue Transition styles for Tailwind CSS |
89-
| ⚠️ `vcss-transition-named-tailwind` | Vue Named Transition styles for Tailwind CSS |
90-
| ⚠️ `vcss-transition-group` | Vue Transition Group styles |
91-
| ⚠️ `vcss-transition-group-tailwind` | Vue Transition Group styles for Tailwind CSS |
92-
93-
> Snippets with ⚠️ symbol are unreleased.
84+
| Snippet | Purpose |
85+
| -------------------------------- | -------------------------------------------- |
86+
| `vcss-transition` | Vue Transition styles |
87+
| `vcss-transition-named` | Vue Named Transition styles |
88+
| `vcss-transition-tailwind` | Vue Transition styles for Tailwind CSS |
89+
| `vcss-transition-named-tailwind` | Vue Named Transition styles for Tailwind CSS |
90+
| `vcss-transition-group` | Vue Transition Group styles |
91+
| `vcss-transition-group-tailwind` | Vue Transition Group styles for Tailwind CSS |
9492

9593
### Pinia
9694

97-
| Snippet | Purpose |
98-
| ---------------------- | ------------------------------------------------------------ |
99-
| `pstore` | Base code needed for a Pinia store file |
100-
| ⚠️ `pstore-composition` | Base code needed for a Pinia store file with Composition API |
101-
102-
> Snippets with ⚠️ symbol are unreleased.
95+
| Snippet | Purpose |
96+
| -------------------- | ------------------------------------------------------------ |
97+
| `pstore` | Base code needed for a Pinia store file |
98+
| `pstore-composition` | Base code needed for a Pinia store file with Composition API |
10399

104100
### Vue Router
105101

@@ -135,32 +131,28 @@ These snippets were made to speed up Vue 3 development. With it you can write bo
135131
| `nhead-template` | `useHead` composable with title template |
136132
| `npagemeta` | `definePageMeta` composable |
137133
| `npagemeta-description` | `definePageMeta` composable with description |
138-
| ⚠️ `nplugin` | Base code for Nuxt plugin |
139-
| ⚠️ `nmiddleware` | Base code for Nuxt middleware |
140-
| ⚠️ `nserverroute` | Base code for Nuxt server route |
141-
142-
> Snippets with ⚠️ symbol are unreleased.
134+
| `nplugin` | Base code for Nuxt plugin |
135+
| `nmiddleware` | Base code for Nuxt middleware |
136+
| `nserverroute` | Base code for Nuxt server route |
143137

144138
### Histoire
145139

146-
| Snippet | Purpose |
147-
| ------------------------- | ------------------------------------ |
148-
| ⚠️ `hconfig` | Histoire config for Vue 3 |
149-
| ⚠️ `hconfig-nuxt` | Histoire config for Nuxt 3 |
150-
| ⚠️ `hbase` | Base code for story |
151-
| ⚠️ `hbase-variant` | Base code for story with variant |
152-
| ⚠️ `hbase-grid` | Base code for story with grid layout |
153-
| ⚠️ `hvariant` | Story variant |
154-
| ⚠️ `hgrid` | Histoire grid layout |
155-
| ⚠️ `hcontrols-base` | Histoire controls base |
156-
| ⚠️ `hcontrols-button` | Histoire controls - Button |
157-
| ⚠️ `hcontrols-buttongroup` | Histoire controls - Button Group |
158-
| ⚠️ `hcontrols-checkbox` | Histoire controls - Checkbox |
159-
| ⚠️ `hcontrols-number` | Histoire controls - Number |
160-
| ⚠️ `hcontrols-text` | Histoire controls - Text |
161-
| ⚠️ `hcontrols-textarea` | Histoire controls - Textarea |
162-
163-
> Snippets with ⚠️ symbol are unreleased.
140+
| Snippet | Purpose |
141+
| ----------------------- | ------------------------------------ |
142+
| `hconfig` | Histoire config for Vue 3 |
143+
| `hconfig-nuxt` | Histoire config for Nuxt 3 |
144+
| `hbase` | Base code for story |
145+
| `hbase-variant` | Base code for story with variant |
146+
| `hbase-grid` | Base code for story with grid layout |
147+
| `hvariant` | Story variant |
148+
| `hgrid` | Histoire grid layout |
149+
| `hcontrols-base` | Histoire controls base |
150+
| `hcontrols-button` | Histoire controls - Button |
151+
| `hcontrols-buttongroup` | Histoire controls - Button Group |
152+
| `hcontrols-checkbox` | Histoire controls - Checkbox |
153+
| `hcontrols-number` | Histoire controls - Number |
154+
| `hcontrols-text` | Histoire controls - Text |
155+
| `hcontrols-textarea` | Histoire controls - Textarea |
164156

165157
## Contributing
166158

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Vue 3 VS Code Snippets",
44
"description": "Vue 3 snippets for VS Code",
55
"icon": "images/vue-logo.png",
6-
"version": "0.1.1",
6+
"version": "0.2.0",
77
"publisher": "exer7um",
88
"repository": {
99
"type": "git",

0 commit comments

Comments
 (0)
Please sign in to comment.