修改 Git 仓库地址
This commit is contained in:
parent
695bcb830d
commit
73f7ae9113
@ -2,7 +2,7 @@
|
|||||||
// 插件 id 及名称
|
// 插件 id 及名称
|
||||||
"name": "variable-conversion",
|
"name": "variable-conversion",
|
||||||
"displayName": "Variable Conversion",
|
"displayName": "Variable Conversion",
|
||||||
"description": "",
|
"description": "A variable naming conversion extension, support camel case, pascal case, kebab(spinal) case, snake case, snake upper case, upper case, lower case, camel snake case, and more. \n一个变量命名方式互相转换的 VSCode 插件,支持小驼峰(驼峰命名)、大驼峰(帕斯卡命名)、连字符(脊柱式命名)、下划线(蛇形命名)、驼峰蛇形命名、下划线大写、全大写、全小写等常用命名方式",
|
||||||
// 版本号
|
// 版本号
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"engines": {
|
"engines": {
|
||||||
@ -14,8 +14,18 @@
|
|||||||
// 仓库地址
|
// 仓库地址
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/coder-xiaomo/text-conversion-vscode-extension.git"
|
"url": "https://github.com/coder-xiaomo/variable-conversion-vscode-extension.git"
|
||||||
},
|
},
|
||||||
|
"repositories": [
|
||||||
|
{
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.only4.work/coder-xiaomo/variable-conversion-vscode-extension.git"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://gitee.com/coder-xiaomo/variable-conversion-vscode-extension.git"
|
||||||
|
}
|
||||||
|
],
|
||||||
"main": "./out/extension.js",
|
"main": "./out/extension.js",
|
||||||
"activationEvents": [],
|
"activationEvents": [],
|
||||||
"contributes": {
|
"contributes": {
|
||||||
@ -40,6 +50,10 @@
|
|||||||
"command": "extension.toSnakeCase",
|
"command": "extension.toSnakeCase",
|
||||||
"title": "下划线 / 蛇形命名 (Snake Case) [ foo_bar ]"
|
"title": "下划线 / 蛇形命名 (Snake Case) [ foo_bar ]"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"command": "extension.toCamelSnakeCase",
|
||||||
|
"title": "驼峰蛇形命名 (Camel Snake Case) [ Foo_Bar ]"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"command": "extension.toSnakeUpperCase",
|
"command": "extension.toSnakeUpperCase",
|
||||||
"title": "下划线大写 (Snake Upper Case) [ FOO_BAR ]"
|
"title": "下划线大写 (Snake Upper Case) [ FOO_BAR ]"
|
||||||
@ -51,10 +65,6 @@
|
|||||||
{
|
{
|
||||||
"command": "extension.toLowerCase",
|
"command": "extension.toLowerCase",
|
||||||
"title": "全小写 (Lower Case) [ foobar ]"
|
"title": "全小写 (Lower Case) [ foobar ]"
|
||||||
},
|
|
||||||
{
|
|
||||||
"command": "extension.toCamelSnakeCase",
|
|
||||||
"title": "驼峰蛇形命名 (Camel Snake Case) [ Foo_Bar ]"
|
|
||||||
}
|
}
|
||||||
// 隐藏命令
|
// 隐藏命令
|
||||||
// {
|
// {
|
||||||
@ -130,6 +140,10 @@
|
|||||||
"command": "extension.toSnakeCase",
|
"command": "extension.toSnakeCase",
|
||||||
"group": "group-extension"
|
"group": "group-extension"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"command": "extension.toCamelSnakeCase",
|
||||||
|
"group": "group-extension"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"command": "extension.toSnakeUpperCase",
|
"command": "extension.toSnakeUpperCase",
|
||||||
"group": "group-extension"
|
"group": "group-extension"
|
||||||
@ -141,10 +155,6 @@
|
|||||||
{
|
{
|
||||||
"command": "extension.toLowerCase",
|
"command": "extension.toLowerCase",
|
||||||
"group": "group-extension"
|
"group": "group-extension"
|
||||||
},
|
|
||||||
{
|
|
||||||
"command": "extension.toCamelSnakeCase",
|
|
||||||
"group": "group-extension"
|
|
||||||
}
|
}
|
||||||
// 隐藏菜单项
|
// 隐藏菜单项
|
||||||
// {
|
// {
|
||||||
|
12
package.json
12
package.json
@ -11,8 +11,18 @@
|
|||||||
],
|
],
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/coder-xiaomo/text-conversion-vscode-extension.git"
|
"url": "https://github.com/coder-xiaomo/variable-conversion-vscode-extension.git"
|
||||||
},
|
},
|
||||||
|
"repositories": [
|
||||||
|
{
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.only4.work/coder-xiaomo/variable-conversion-vscode-extension.git"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://gitee.com/coder-xiaomo/variable-conversion-vscode-extension.git"
|
||||||
|
}
|
||||||
|
],
|
||||||
"main": "./out/extension.js",
|
"main": "./out/extension.js",
|
||||||
"activationEvents": [],
|
"activationEvents": [],
|
||||||
"contributes": {
|
"contributes": {
|
||||||
|
Loading…
Reference in New Issue
Block a user