@devkong/cli 0.0.36 → 0.0.38
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/index.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -81669,6 +81669,7 @@ var PublishVersionCommand = class {
|
|
|
81669
81669
|
metadata: kongJson,
|
|
81670
81670
|
version: Number(ctx.publishDetails.imageVersion),
|
|
81671
81671
|
notes,
|
|
81672
|
+
checkpoint: "",
|
|
81672
81673
|
created: utcNow(DEFAULT_TIMEZONE),
|
|
81673
81674
|
createdBy: ""
|
|
81674
81675
|
};
|
|
@@ -81696,7 +81697,7 @@ var PublishVersionCommand = class {
|
|
|
81696
81697
|
return `${engine} ${escapePathSpaces(mainPyPath)} --schema`;
|
|
81697
81698
|
}
|
|
81698
81699
|
getKotlinBuildCmdTask() {
|
|
81699
|
-
return `${this.wslPrefix} ./gradlew build -Dquarkus.package.main-class=io.kong.sdkkotlin.
|
|
81700
|
+
return `${this.wslPrefix} ./gradlew build -Dquarkus.package.main-class=io.kong.sdkkotlin.QuarkusApp`;
|
|
81700
81701
|
}
|
|
81701
81702
|
getKotlinSchemaCmdTask() {
|
|
81702
81703
|
return `${this.wslPrefix} java -Dquarkus-profile=local -jar build/quarkus-app/quarkus-run.jar --schema`;
|