@devkong/cli 0.0.62 → 0.0.64

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.
Files changed (2) hide show
  1. package/index.js +2 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -87749,7 +87749,8 @@ var PublishVersionCommand = class {
87749
87749
  task: async (ctx, task) => {
87750
87750
  const logger = new ListrTaskLogger(task, this.verbose ? 3 /* DEBUG */ : 0 /* INFO */);
87751
87751
  const cmdText = this.getKotlinBuildCmdTask();
87752
- ctx.contractText = await spawnCommand(cmdText, logger);
87752
+ const isPythonSdk = kongJson.sdk === "python";
87753
+ ctx.contractText = await spawnCommand(cmdText, logger, !isPythonSdk);
87753
87754
  },
87754
87755
  rendererOptions: this.defaultRendererOptions
87755
87756
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devkong/cli",
3
- "version": "0.0.62",
3
+ "version": "0.0.64",
4
4
  "type": "commonjs",
5
5
  "main": "./index.js",
6
6
  "typings": "./index.d.ts",