diff --git a/.gitignore b/.gitignore index 929ffd7..c9cff44 100644 --- a/.gitignore +++ b/.gitignore @@ -106,3 +106,4 @@ dist package-lock.json .vscode-test/* +*.vsix diff --git a/README.md b/README.md index b7e898b..86f27ae 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/package.json b/package.json index 79fcece..64a5372 100644 --- a/package.json +++ b/package.json @@ -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" }, @@ -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", @@ -44,7 +45,7 @@ "author": "Manuel Spigolon (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" }