@simplysm/sd-cli 7.0.158 → 7.0.159
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.159",
|
|
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.159",
|
|
56
|
+
"@simplysm/sd-core-node": "7.0.159",
|
|
57
|
+
"@simplysm/sd-service-common": "7.0.159",
|
|
58
|
+
"@simplysm/sd-service-server": "7.0.159",
|
|
59
|
+
"@simplysm/sd-storage": "7.0.159",
|
|
60
60
|
"electron": "^17.1.2",
|
|
61
61
|
"electron-builder": "^22.14.13",
|
|
62
62
|
"xml2js": "^0.4.23",
|
|
@@ -9,7 +9,6 @@ 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);
|
|
13
12
|
const releaseId = await this._createReleaseTagAsync(version);
|
|
14
13
|
|
|
15
14
|
for (const file of files) {
|
|
@@ -86,6 +86,8 @@ export class SdCliPackage extends EventEmitter {
|
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
public async publishAsync(): Promise<void> {
|
|
89
|
+
console.log(this._npmConfig.name, this.config.publish);
|
|
90
|
+
|
|
89
91
|
if (this.config.publish !== undefined) {
|
|
90
92
|
if (this.config.type === "library") {
|
|
91
93
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|