@boxes-dev/dvb 1.0.86 → 1.0.88
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/dvb.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
"use strict";
|
|
3
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
3
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="01475b24-87d7-5416-a55c-cbe75aafb19b")}catch(e){}}();
|
|
4
4
|
|
|
5
5
|
var __create = Object.create;
|
|
6
6
|
var __defProp = Object.defineProperty;
|
|
@@ -88688,8 +88688,8 @@ var init_otel = __esm({
|
|
|
88688
88688
|
return trimmed && trimmed.length > 0 ? trimmed : void 0;
|
|
88689
88689
|
};
|
|
88690
88690
|
readBuildMetadata = () => {
|
|
88691
|
-
const rawPackageVersion = "1.0.
|
|
88692
|
-
const rawGitSha = "
|
|
88691
|
+
const rawPackageVersion = "1.0.88";
|
|
88692
|
+
const rawGitSha = "8e45974e56bd06729f3f9c411fcdd60bfef76e97";
|
|
88693
88693
|
const packageVersion = typeof rawPackageVersion === "string" ? rawPackageVersion : void 0;
|
|
88694
88694
|
const gitSha = typeof rawGitSha === "string" ? rawGitSha : void 0;
|
|
88695
88695
|
return { packageVersion, gitSha };
|
|
@@ -120679,9 +120679,9 @@ var init_sentry = __esm({
|
|
|
120679
120679
|
sentryEnabled = false;
|
|
120680
120680
|
uncaughtExceptionMonitorInstalled = false;
|
|
120681
120681
|
readBuildMetadata2 = () => {
|
|
120682
|
-
const rawPackageVersion = "1.0.
|
|
120683
|
-
const rawGitSha = "
|
|
120684
|
-
const rawSentryRelease = "boxes-dev-dvb@1.0.
|
|
120682
|
+
const rawPackageVersion = "1.0.88";
|
|
120683
|
+
const rawGitSha = "8e45974e56bd06729f3f9c411fcdd60bfef76e97";
|
|
120684
|
+
const rawSentryRelease = "boxes-dev-dvb@1.0.88+8e45974e56bd06729f3f9c411fcdd60bfef76e97";
|
|
120685
120685
|
const packageVersion = typeof rawPackageVersion === "string" ? rawPackageVersion : void 0;
|
|
120686
120686
|
const gitSha = typeof rawGitSha === "string" ? rawGitSha : void 0;
|
|
120687
120687
|
const sentryRelease = typeof rawSentryRelease === "string" ? rawSentryRelease : void 0;
|
|
@@ -202586,8 +202586,34 @@ var init_connect2 = __esm({
|
|
|
202586
202586
|
return [connectShell, "-lc", `${envCommandPrefix}${parsed.command}`];
|
|
202587
202587
|
}
|
|
202588
202588
|
if (computeProvider === "modal") {
|
|
202589
|
-
const
|
|
202590
|
-
|
|
202589
|
+
const interactiveCommand = [
|
|
202590
|
+
// Guard against environments that still deliver SIGINT on Ctrl-C
|
|
202591
|
+
// even after apps disable ISIG in raw mode. When ISIG is off, set
|
|
202592
|
+
// VINTR to undef; restore VINTR once ISIG is back on.
|
|
202593
|
+
`orig_intr="$(stty -a 2>/dev/null | sed -n 's/.*intr = \\([^;]*\\);.*/\\1/p')"`,
|
|
202594
|
+
`(
|
|
202595
|
+
while :; do
|
|
202596
|
+
state="$(stty -a 2>/dev/null || true)"
|
|
202597
|
+
if [ -z "$state" ]; then
|
|
202598
|
+
sleep 0.2
|
|
202599
|
+
continue
|
|
202600
|
+
fi
|
|
202601
|
+
if printf '%s\\n' "$state" | grep -q -- '-isig'; then
|
|
202602
|
+
if ! printf '%s\\n' "$state" | grep -q 'intr = <undef>;'; then
|
|
202603
|
+
stty intr undef 2>/dev/null || true
|
|
202604
|
+
fi
|
|
202605
|
+
else
|
|
202606
|
+
if printf '%s\\n' "$state" | grep -q 'intr = <undef>;' && [ -n "$orig_intr" ] && [ "$orig_intr" != "<undef>" ]; then
|
|
202607
|
+
stty intr "$orig_intr" 2>/dev/null || true
|
|
202608
|
+
fi
|
|
202609
|
+
fi
|
|
202610
|
+
sleep 0.2
|
|
202611
|
+
done
|
|
202612
|
+
) &
|
|
202613
|
+
tty_intr_guard_pid=$!
|
|
202614
|
+
trap 'kill "$tty_intr_guard_pid" 2>/dev/null || true; if [ -n "$orig_intr" ] && [ "$orig_intr" != "<undef>" ]; then stty intr "$orig_intr" 2>/dev/null || true; fi' EXIT`,
|
|
202615
|
+
"exec bash -il || exec sh -i"
|
|
202616
|
+
].join("; ");
|
|
202591
202617
|
if (projectWorkdir) {
|
|
202592
202618
|
return [
|
|
202593
202619
|
"/bin/sh",
|
|
@@ -220271,4 +220297,4 @@ smol-toml/dist/index.js:
|
|
|
220271
220297
|
*/
|
|
220272
220298
|
//# sourceMappingURL=dvb.cjs.map
|
|
220273
220299
|
|
|
220274
|
-
//# debugId=
|
|
220300
|
+
//# debugId=01475b24-87d7-5416-a55c-cbe75aafb19b
|