@varlet/cli 1.24.3 → 1.24.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commands/release.js +4 -1
- package/package.json +5 -5
package/lib/commands/release.js
CHANGED
|
@@ -104,8 +104,11 @@ function pushGit(version) {
|
|
|
104
104
|
return [4 /*yield*/, (0, execa_1.default)('git', ['tag', "v".concat(version)])];
|
|
105
105
|
case 3:
|
|
106
106
|
_a.sent();
|
|
107
|
-
return [4 /*yield*/, (0, execa_1.default)('git', ['push'])];
|
|
107
|
+
return [4 /*yield*/, (0, execa_1.default)('git', ['push', 'origin', "v".concat(version)])];
|
|
108
108
|
case 4:
|
|
109
|
+
_a.sent();
|
|
110
|
+
return [4 /*yield*/, (0, execa_1.default)('git', ['push'])];
|
|
111
|
+
case 5:
|
|
109
112
|
ret = _a.sent();
|
|
110
113
|
s.succeed('Push remote repository successfully');
|
|
111
114
|
ret.stdout && logger_1.default.info(ret.stdout);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@varlet/cli",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.4",
|
|
4
4
|
"description": "cli of varlet",
|
|
5
5
|
"bin": {
|
|
6
6
|
"varlet-cli": "./lib/index.js"
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
},
|
|
30
30
|
"gitHead": "ee9c3866bedad96c86365b0f9888a3a6bb781b1f",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@varlet/icons": "1.24.
|
|
33
|
-
"@varlet/markdown-vite-plugin": "1.24.
|
|
34
|
-
"@varlet/touch-emulator": "1.24.
|
|
32
|
+
"@varlet/icons": "1.24.4",
|
|
33
|
+
"@varlet/markdown-vite-plugin": "1.24.4",
|
|
34
|
+
"@varlet/touch-emulator": "1.24.4",
|
|
35
35
|
"@babel/core": "^7.14.8",
|
|
36
36
|
"@babel/preset-env": "^7.14.8",
|
|
37
37
|
"@babel/preset-typescript": "^7.14.5",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"@types/lodash-es": "^4.17.5"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
|
-
"@varlet/touch-emulator": "1.24.
|
|
76
|
+
"@varlet/touch-emulator": "1.24.4",
|
|
77
77
|
"@vue/test-utils": "^2.0.0-rc.6",
|
|
78
78
|
"vue": "3.2.16",
|
|
79
79
|
"vue-router": "4.0.12",
|