@penvhq/launcher 0.15.0 → 0.16.0
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/dist/bin.cjs +4 -4
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -1
- package/dist/{chunk-PO6FWAPJ.js → chunk-HQTTS5BH.js} +5 -5
- package/dist/chunk-HQTTS5BH.js.map +1 -0
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/dist/chunk-PO6FWAPJ.js.map +0 -1
package/dist/bin.cjs
CHANGED
|
@@ -442,7 +442,7 @@ var UpgradeUnattendedError = class extends import_core.PenvError {
|
|
|
442
442
|
super(
|
|
443
443
|
"PENV_UPGRADE_UNATTENDED",
|
|
444
444
|
`Upgrading rewrites ${import_core.MANIFEST_PATH} and package.json, and this run has nobody to decide that`,
|
|
445
|
-
`Run \`${UPGRADE_COMMAND}
|
|
445
|
+
`Run \`${UPGRADE_COMMAND} ${YES_FLAG}\` to take what \`latest\` points at, or \`${UPGRADE_COMMAND} <version> ${YES_FLAG}\` to name one. In CI, run \`${INSTALL_COMMAND}\`: it installs what the committed manifest already pins.`
|
|
446
446
|
);
|
|
447
447
|
}
|
|
448
448
|
};
|
|
@@ -1732,8 +1732,8 @@ var DEV_PIN_INTEGRITY = "sha512-development-build-not-a-published-release";
|
|
|
1732
1732
|
var DEV_PIN_VERSION = "0.0.0-dev";
|
|
1733
1733
|
var BUNDLED_ENGINE_PIN = {
|
|
1734
1734
|
package: import_core8.ENGINE_PACKAGE,
|
|
1735
|
-
version: "0.
|
|
1736
|
-
integrity: "sha512
|
|
1735
|
+
version: "0.16.0",
|
|
1736
|
+
integrity: "sha512-DSA07wrSown70tU/9ix9yozJihsQjHFPN3/iXLiH6sS6LYT+/PWBFmVI6C2tH/qaUL2GGh4mgRHL8LGM749C8Q=="
|
|
1737
1737
|
};
|
|
1738
1738
|
function assertReleasePin(pin) {
|
|
1739
1739
|
if (pin.integrity === DEV_PIN_INTEGRITY || pin.version === DEV_PIN_VERSION) {
|
|
@@ -1831,7 +1831,7 @@ async function upgrade(options) {
|
|
|
1831
1831
|
if (options.noDownload === true) {
|
|
1832
1832
|
throw new UpgradeNoDownloadError();
|
|
1833
1833
|
}
|
|
1834
|
-
if ((options.ci === true || !io2.interactive) && !
|
|
1834
|
+
if ((options.ci === true || !io2.interactive) && !request.yes) {
|
|
1835
1835
|
throw new UpgradeUnattendedError();
|
|
1836
1836
|
}
|
|
1837
1837
|
const release = await fetchRelease({
|