From 76aa7722bbe8437e5e1aeb382af47cfbdd72da0d Mon Sep 17 00:00:00 2001 From: Vasily Kuzin Date: Sat, 10 Jun 2023 18:21:43 +0300 Subject: [PATCH 1/2] fix: Wrong parenthesis placement in Vitest snippets (#48) Fix parenthesis placement #47 --- snippets/vitest/vitest.code-snippets | 40 ++++++++++++++-------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/snippets/vitest/vitest.code-snippets b/snippets/vitest/vitest.code-snippets index ce6944c..8275677 100644 --- a/snippets/vitest/vitest.code-snippets +++ b/snippets/vitest/vitest.code-snippets @@ -13,54 +13,54 @@ "Vitest Describe": { "prefix": "videscribe", "body": [ - "describe('${1:name}'), () => {", + "describe('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Describe" }, "Vitest Describe - Concurrent": { "prefix": "videscribe-concurrent", "body": [ - "describe.concurrent('${1:name}'), () => {", + "describe.concurrent('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Describe Concurrent" }, "Vitest It": { "prefix": "viit", "body": [ - "it('${1:name}'), () => {", + "it('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest It" }, "Vitest It - Concurrent": { "prefix": "viit-concurrent", "body": [ - "it.concurrent('${1:name}'), () => {", + "it.concurrent('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest It Concurrent" }, "Vitest It - Async": { "prefix": "viit-async", "body": [ - "it('${1:name}'), async () => {", + "it('${1:name}', async () => {", "\t${0}", - "}" + "})" ], "description": "Vitest It Async" }, "Vitest It - Async Concurrent": { "prefix": "viit-async-concurrent", "body": [ - "it.concurrent('${1:name}'), async () => {", + "it.concurrent('${1:name}', async () => {", "\t${0}", - "}" + "})" ], "description": "Vitest It Async Concurrent" }, @@ -74,36 +74,36 @@ "Vitest Test": { "prefix": "vitest", "body": [ - "test('${1:name}'), () => {", + "test('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Test" }, "Vitest Test - Concurrent": { "prefix": "vitest-concurrent", "body": [ - "test.concurrent('${1:name}'), () => {", + "test.concurrent('${1:name}', () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Test Concurrent" }, "Vitest Test - Async": { "prefix": "vitest-async", "body": [ - "test('${1:name}'), async () => {", + "test('${1:name}', async () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Test Async" }, "Vitest Test - Async Concurrent": { "prefix": "vitest-async-concurrent", "body": [ - "test.concurrent('${1:name}'), async () => {", + "test.concurrent('${1:name}', async () => {", "\t${0}", - "}" + "})" ], "description": "Vitest Test Async Concurrent" }, From 8ed1bf638257df869e3a3986e7d69e041c66b416 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 10 Jun 2023 15:22:33 +0000 Subject: [PATCH 2/2] release: `v0.4.1` --- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aebfff5..020d512 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to the "vue3-vscode-snippets" extension will be documented in this file. +## v0.4.1 + +[compare changes](https://github.com/ExEr7um/vue3-vscode-snippets/compare/v0.4.0...v0.4.1) + + +### 🩹 Fixes + + - Wrong parenthesis placement in Vitest snippets ([#48](https://github.com/ExEr7um/vue3-vscode-snippets/pull/48)) + +### ❤️ Contributors + +- Vasily Kuzin ([@ExEr7um](http://github.com/ExEr7um)) + ## v0.4.0 [compare changes](https://github.com/ExEr7um/vue3-vscode-snippets/compare/v0.3.1...v0.4.0) diff --git a/package.json b/package.json index dcb15d3..3b8239c 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Vue 3 VS Code Snippets", "description": "Vue 3 snippets for VS Code", "icon": "images/vue-logo.png", - "version": "0.4.0", + "version": "0.4.1", "publisher": "exer7um", "repository": { "type": "git",