Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,4 @@ dist
package-lock.json

.vscode-test/*
*.vsix
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# fastify-snippet
# fastify-snippets

Some [VSCode](https://code.visualstudio.com/) snippets about Fastify
The official [Fastify](https://www.fastify.io/) [VSCode](https://code.visualstudio.com/) snippets!

Install it from your VSCODE plugin page!
Install it from the [VSCode marketplace](https://marketplace.visualstudio.com/items?itemName=fastify.fastify-snippets)!

For more information, take a look a the [VSCode documentation](https://code.visualstudio.com/docs/editor/userdefinedsnippets)

Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"scripts": {
"build:toc": "node toc",
"vscode:login": "vsce login fastify",
"vscode:pack": "vsce package",
"vscode:publish": "vsce publish",
"test": "tap --no-timeout test/**.test.js"
},
Expand All @@ -21,17 +22,17 @@
"snippets": [
{
"language": "javascript",
"path": "./snippets-js.json"
"path": "./snippets/snippets-js.json"
},
{
"language": "typescript",
"path": "./snippets-ts.json"
"path": "./snippets/snippets-ts.json"
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eomm/fastify-snippet.git"
"url": "git+https://github.com/fastify/fastify-snippet.git"
},
"keywords": [
"vscode",
Expand All @@ -44,7 +45,7 @@
"author": "Manuel Spigolon <behemoth89@gmail.com> (https://github.com/Eomm)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eomm/fastify-snippet/issues"
"url": "https://github.com/fastify/fastify-snippet/issues"
},
"homepage": "https://github.com/Eomm/fastify-snippet#readme"
"homepage": "https://github.com/fastify/fastify-snippet#readme"
}