@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.
- package/assets/python-install.bat +3 -1
- package/assets/python-install.sh +3 -1
- package/index.js +1 -1
- package/package.json +1 -1
|
@@ -23,4 +23,6 @@ cd %EXTENSION_DIR%
|
|
|
23
23
|
|
|
24
24
|
call .venv\Scripts\activate.bat
|
|
25
25
|
|
|
26
|
-
%PIP_CMD%
|
|
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
|
package/assets/python-install.sh
CHANGED
|
@@ -20,4 +20,6 @@ $PYTHON_CMD -m venv .venv
|
|
|
20
20
|
|
|
21
21
|
source .venv/bin/activate
|
|
22
22
|
|
|
23
|
-
$PIP_CMD
|
|
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.
|
|
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`;
|