@simplysm/sd-cli 7.0.154 → 7.0.158
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysm/sd-cli",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.158",
|
|
4
4
|
"description": "심플리즘 패키지 - CLI",
|
|
5
5
|
"author": "김석래",
|
|
6
6
|
"repository": {
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"jsdom": "^19.0.0",
|
|
53
53
|
"cordova": "^11.0.0",
|
|
54
54
|
"jszip": "^3.7.1",
|
|
55
|
-
"@simplysm/sd-core-common": "7.0.
|
|
56
|
-
"@simplysm/sd-core-node": "7.0.
|
|
57
|
-
"@simplysm/sd-service-common": "7.0.
|
|
58
|
-
"@simplysm/sd-service-server": "7.0.
|
|
59
|
-
"@simplysm/sd-storage": "7.0.
|
|
55
|
+
"@simplysm/sd-core-common": "7.0.158",
|
|
56
|
+
"@simplysm/sd-core-node": "7.0.158",
|
|
57
|
+
"@simplysm/sd-service-common": "7.0.158",
|
|
58
|
+
"@simplysm/sd-service-server": "7.0.158",
|
|
59
|
+
"@simplysm/sd-storage": "7.0.158",
|
|
60
60
|
"electron": "^17.1.2",
|
|
61
61
|
"electron-builder": "^22.14.13",
|
|
62
62
|
"xml2js": "^0.4.23",
|
|
@@ -9,6 +9,7 @@ export class SdCliGithubApi {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
public async uploadAsync(version: string, files: { name: string; buffer: Buffer }[]): Promise<void> {
|
|
12
|
+
console.log(version);
|
|
12
13
|
const releaseId = await this._createReleaseTagAsync(version);
|
|
13
14
|
|
|
14
15
|
for (const file of files) {
|
|
@@ -260,7 +260,8 @@ export class SdCliWorkspace {
|
|
|
260
260
|
await SdProcess.spawnAsync(`git tag -a "v${this._npmConfig.version}" -m "v${this._npmConfig.version}"`);
|
|
261
261
|
|
|
262
262
|
this._logger.debug("새 버전 푸쉬...");
|
|
263
|
-
await SdProcess.spawnAsync("git push
|
|
263
|
+
await SdProcess.spawnAsync("git push");
|
|
264
|
+
await SdProcess.spawnAsync("git push --tags");
|
|
264
265
|
}
|
|
265
266
|
|
|
266
267
|
this._logger.debug("배포 시작...");
|