@devkong/cli 0.0.39 → 0.0.40

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.
@@ -23,4 +23,6 @@ cd %EXTENSION_DIR%
23
23
 
24
24
  call .venv\Scripts\activate.bat
25
25
 
26
- %PIP_CMD% install -r requirements.txt -r requirements-dev.txt
26
+ %PIP_CMD% freeze > requirements-lock.txt
27
+ %PIP_CMD% install --default-timeout=120 -r requirements.txt -r requirements-dev.txt
28
+ %PIP_CMD% freeze > requirements-lock.txt
@@ -20,4 +20,6 @@ $PYTHON_CMD -m venv .venv
20
20
 
21
21
  source .venv/bin/activate
22
22
 
23
- $PIP_CMD install -r requirements-dev.txt -r requirements.txt
23
+ $PIP_CMD freeze > requirements-lock.txt
24
+ $PIP_CMD install --default-timeout=120 -r requirements-dev.txt -r requirements.txt
25
+ $PIP_CMD freeze > requirements-lock.txt
package/index.js CHANGED
@@ -82084,7 +82084,7 @@ var PublishVersionCommand = class {
82084
82084
  return `${engine} ${escapePathSpaces(mainPyPath)} --schema`;
82085
82085
  }
82086
82086
  getKotlinBuildCmdTask() {
82087
- return `${this.wslPrefix} ./gradlew build -Dquarkus.package.main-class=io.kong.sdkkotlin.JsonSchemaGeneratingQuarkusApp`;
82087
+ return `${this.wslPrefix} ./gradlew build -Dquarkus.package.main-class=io.kong.sdkkotlin.QuarkusApp`;
82088
82088
  }
82089
82089
  getKotlinSchemaCmdTask() {
82090
82090
  return `${this.wslPrefix} java -Dquarkus-profile=local -jar build/quarkus-app/quarkus-run.jar --schema`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devkong/cli",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "type": "commonjs",
5
5
  "main": "./index.js",
6
6
  "typings": "./index.d.ts",