@devkong/cli 0.0.35 → 0.0.37
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 -0
- 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
|
@@ -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
|
};
|