Skip to content

Commit 653f2e4

Browse files
committed
🔌 extension-specific files
1 parent cb07f9e commit 653f2e4

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed

Diff for: .vscode/launch.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// A launch configuration that launches the extension inside a new window
2+
{
3+
"version": "0.1.0",
4+
"configurations": [
5+
{
6+
"name": "Launch Extension",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
11+
}
12+
]
13+
}

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Change Log
2+
All notable changes to the "vue-vscode-snippets" extension will be documented in this file.
3+
4+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
5+
6+
## [Unreleased]
7+
- Initial release

Diff for: package.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "vue-vscode-snippets",
3+
"displayName": "Vue VSCode Snippets",
4+
"description": "Snippets that will supercharge your Vue workflow",
5+
"version": "0.0.1",
6+
"publisher": "sdras",
7+
"engines": {
8+
"vscode": "^1.15.0"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/sdras/vue-vscode-snippets.git"
13+
},
14+
"keywords": [
15+
"Vue",
16+
"Vue 2",
17+
"Vue Snippets"
18+
],
19+
"categories": [
20+
"Snippets"
21+
],
22+
"contributes": {
23+
"snippets": [
24+
{
25+
"language": "vue",
26+
"path": "./snippets/vue.json"
27+
},
28+
{
29+
"language": "plaintext",
30+
"path": "./snippets/plaintext.json"
31+
}
32+
]
33+
}
34+
}

0 commit comments

Comments
 (0)