Skip to content

Commit

Permalink
Merge pull request #6 from deinsoftware/dev
Browse files Browse the repository at this point in the history
add files extension compatibility
  • Loading branch information
equiman authored Feb 28, 2023
2 parents 3a1df64 + 9f11d64 commit b1e0d29
Show file tree
Hide file tree
Showing 4 changed files with 144 additions and 2 deletions.
Binary file modified .github/social/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ Fixed for any bug fixes.
Security to invite users to upgrade in case of vulnerabilities.
-->

## 1.2.0 - 2023/02/28

### Added

- TypeScript, React and Vue compatibility

## 1.1.1 - 2023/02/27

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ Open the extension manager with <kbd>ctrl</kbd>+<kbd>shift</kbd>+<kbd>X</kbd> (W
| Language | Extension |
| ---------------- | --------- |
| JavaScript | `.js` |
| TypeScript | `.ts` |
| JavaScript React | `.jsx` |
| TypeScript React | `.tsx` |
| Vue | `.vue` |

[Back to menu](#menu)

Expand Down
136 changes: 134 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vitest-snippets",
"description": "VS Code Vitest snippets for JS and TS",
"version": "1.1.1",
"version": "1.2.0",
"displayName": "Vitest Snippets",
"publisher": "deinsoftware",
"icon": "images/light-icon.png",
Expand All @@ -10,8 +10,12 @@
"describe",
"expect",
"test",
"testing",
"snippets",
"javascript"
"javascript",
"typescript",
"react",
"vue"
],
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -69,6 +73,134 @@
{
"language": "javascript",
"path": "./snippets/assertion.json"
},
{
"language": "javascriptreact",
"path": "./snippets/import.json"
},
{
"language": "javascriptreact",
"path": "./snippets/setup.json"
},
{
"language": "javascriptreact",
"path": "./snippets/describe.json"
},
{
"language": "javascriptreact",
"path": "./snippets/mock.json"
},
{
"language": "javascriptreact",
"path": "./snippets/it.json"
},
{
"language": "javascriptreact",
"path": "./snippets/test.json"
},
{
"language": "javascriptreact",
"path": "./snippets/expect.json"
},
{
"language": "javascriptreact",
"path": "./snippets/assertion.json"
},
{
"language": "vue",
"path": "./snippets/import.json"
},
{
"language": "vue",
"path": "./snippets/setup.json"
},
{
"language": "vue",
"path": "./snippets/describe.json"
},
{
"language": "vue",
"path": "./snippets/mock.json"
},
{
"language": "vue",
"path": "./snippets/it.json"
},
{
"language": "vue",
"path": "./snippets/test.json"
},
{
"language": "vue",
"path": "./snippets/expect.json"
},
{
"language": "vue",
"path": "./snippets/assertion.json"
},
{
"language": "typescript",
"path": "./snippets/import.json"
},
{
"language": "typescript",
"path": "./snippets/setup.json"
},
{
"language": "typescript",
"path": "./snippets/describe.json"
},
{
"language": "typescript",
"path": "./snippets/mock.json"
},
{
"language": "typescript",
"path": "./snippets/it.json"
},
{
"language": "typescript",
"path": "./snippets/test.json"
},
{
"language": "typescript",
"path": "./snippets/expect.json"
},
{
"language": "typescript",
"path": "./snippets/assertion.json"
},
{
"language": "typescriptreact",
"path": "./snippets/import.json"
},
{
"language": "typescriptreact",
"path": "./snippets/setup.json"
},
{
"language": "typescriptreact",
"path": "./snippets/describe.json"
},
{
"language": "typescriptreact",
"path": "./snippets/mock.json"
},
{
"language": "typescriptreact",
"path": "./snippets/it.json"
},
{
"language": "typescriptreact",
"path": "./snippets/test.json"
},
{
"language": "typescriptreact",
"path": "./snippets/expect.json"
},
{
"language": "typescriptreact",
"path": "./snippets/assertion.json"
}
]
},
Expand Down

0 comments on commit b1e0d29

Please sign in to comment.