@2890594972
2018-06-07T19:12:26.000000Z
字数 1201
阅读 1698
vscode
snippet
核心要点,package.json的书写
snippets的 json 文件
对应的静态文件等(image)
mq4dc4bneg3glulxrch5gf35cocgaql67rmrxmr3vbp35z2otdla
http://www.cnblogs.com/lianmin/p/5499266.html
https://code.visualstudio.com/docs/extensions/publish-extension
所有插件都可以参考和配置-尤其是bs3
{
"name": "dx-snippet",
"displayName": "dx-snippet",
"description": "针对前端提供的各种实用快捷方式",
"icon": "images/vue-logo.png",
"version": "0.0.1",
"publisher": "daxiang",
"engines": {
"vscode": "^1.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/xiangjun9988/dx-snippet.git"
},
"keywords": ["Vue", "Vue 2", "Vue Snippets"],
"extensionDependencies": ["octref.vetur"],
"categories": ["Snippets"],
"contributes": {
"snippets": [
{
"language": "vue",
"path": "./snippets/vue.json"
},
{
"language": "html",
"path": "./snippets/vue-template.json"
},
{
"language": "vue-html",
"path": "./snippets/vue-template.json"
},
{
"language": "javascript",
"path": "./snippets/vue-script.json"
},
{
"language": "javascript",
"path": "./snippets/vue-script-vuex.json"
},
{
"language": "javascript",
"path": "./snippets/nuxt-config.json"
},
{
"language": "plaintext",
"path": "./snippets/plaintext.json"
}
]
}
}