@simplysm/sd-cli 12.15.29 → 12.15.32

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.
@@ -56,7 +56,7 @@ export class SdCliCordova {
56
56
  _a.#logger.log("이미 생성되어있는 '.cordova'를 사용합니다.");
57
57
  }
58
58
  else {
59
- // await SdCliCordova.#execAsync("npx", ["cordova", "telemetry", "on"], this._opt.pkgPath);
59
+ await _a.#execAsync("npx", ["cordova", "telemetry", "on"], this._opt.pkgPath);
60
60
  // 프로젝트 생성
61
61
  await _a.#execAsync("npx", ["cordova", "create", cordovaPath, this._opt.config.appId, this._opt.config.appName], process.cwd());
62
62
  }
@@ -41,7 +41,7 @@ createSdWorker({
41
41
  return server.options.port;
42
42
  },
43
43
  setPathProxy(pathProxy) {
44
- server.pathProxy = pathProxy;
44
+ server.options.pathProxy = pathProxy;
45
45
  },
46
46
  broadcastReload(clientName, changedFileSet) {
47
47
  server.broadcastReload(clientName, changedFileSet);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/sd-cli",
3
- "version": "12.15.29",
3
+ "version": "12.15.32",
4
4
  "description": "심플리즘 패키지 - CLI",
5
5
  "author": "김석래",
6
6
  "repository": {
@@ -17,13 +17,13 @@
17
17
  "@angular/compiler-cli": "^20.3.14",
18
18
  "@anthropic-ai/sdk": "^0.71.0",
19
19
  "@electron/rebuild": "^4.0.1",
20
- "@simplysm/sd-core-common": "12.15.29",
21
- "@simplysm/sd-core-node": "12.15.29",
22
- "@simplysm/sd-service-server": "12.15.29",
23
- "@simplysm/sd-storage": "12.15.29",
20
+ "@simplysm/sd-core-common": "12.15.32",
21
+ "@simplysm/sd-core-node": "12.15.32",
22
+ "@simplysm/sd-service-server": "12.15.32",
23
+ "@simplysm/sd-storage": "12.15.32",
24
24
  "browserslist": "^4.28.0",
25
25
  "cordova": "^13.0.0",
26
- "electron": "^39.2.3",
26
+ "electron": "^39.2.4",
27
27
  "electron-builder": "26.0.12",
28
28
  "esbuild": "0.25.9",
29
29
  "esbuild-sass-plugin": "^3.3.1",
@@ -71,7 +71,7 @@ export class SdCliCordova {
71
71
  if (FsUtils.exists(cordovaPath)) {
72
72
  SdCliCordova.#logger.log("이미 생성되어있는 '.cordova'를 사용합니다.");
73
73
  } else {
74
- // await SdCliCordova.#execAsync("npx", ["cordova", "telemetry", "on"], this._opt.pkgPath);
74
+ await SdCliCordova.#execAsync("npx", ["cordova", "telemetry", "on"], this._opt.pkgPath);
75
75
 
76
76
  // 프로젝트 생성
77
77
  await SdCliCordova.#execAsync(
@@ -46,7 +46,7 @@ createSdWorker<IServerWorkerType>({
46
46
  return server.options.port;
47
47
  },
48
48
  setPathProxy(pathProxy: Record<string, string>) {
49
- server.pathProxy = pathProxy;
49
+ server.options.pathProxy = pathProxy;
50
50
  },
51
51
  broadcastReload(clientName: string | undefined, changedFileSet: Set<string>) {
52
52
  server.broadcastReload(clientName, changedFileSet);