@boxes-dev/dvb 1.0.92 → 1.0.94
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]="26ee0fe3-516b-5946-82b2-f97da351c971")}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.94";
|
|
88692
|
+
const rawGitSha = "a8b68f87f77be11bf168eddd6c7102a54fba377d";
|
|
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.94";
|
|
120683
|
+
const rawGitSha = "a8b68f87f77be11bf168eddd6c7102a54fba377d";
|
|
120684
|
+
const rawSentryRelease = "boxes-dev-dvb@1.0.94+a8b68f87f77be11bf168eddd6c7102a54fba377d";
|
|
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;
|
|
@@ -200901,62 +200901,7 @@ var init_connect2 = __esm({
|
|
|
200901
200901
|
return env2;
|
|
200902
200902
|
};
|
|
200903
200903
|
formatEnvExports = (env2) => Object.entries(env2).map(([key, value]) => `export ${key}=${shellQuote2(value)}`).join("; ");
|
|
200904
|
-
buildModalInteractiveCommand = () =>
|
|
200905
|
-
// Guard against environments that still deliver SIGINT on Ctrl-C
|
|
200906
|
-
// even after apps disable ISIG in raw mode. Background jobs in this
|
|
200907
|
-
// shell have stdin redirected to /dev/null, so direct stty calls are
|
|
200908
|
-
// no-ops there. Target /dev/tty explicitly.
|
|
200909
|
-
'tty_device="/dev/tty"',
|
|
200910
|
-
"leader_pid=$$",
|
|
200911
|
-
"cleanup_done=0",
|
|
200912
|
-
"tty_intr_guard_pid=",
|
|
200913
|
-
`cleanup() {
|
|
200914
|
-
if [ "$cleanup_done" = "1" ]; then
|
|
200915
|
-
return
|
|
200916
|
-
fi
|
|
200917
|
-
cleanup_done=1
|
|
200918
|
-
if [ -n "$tty_intr_guard_pid" ]; then
|
|
200919
|
-
kill "$tty_intr_guard_pid" 2>/dev/null || true
|
|
200920
|
-
fi
|
|
200921
|
-
if [ -n "$orig_intr" ] && [ "$orig_intr" != "<undef>" ]; then
|
|
200922
|
-
stty intr "$orig_intr" <"$tty_device" 2>/dev/null || true
|
|
200923
|
-
fi
|
|
200924
|
-
}`,
|
|
200925
|
-
`orig_intr="$(stty -a <"$tty_device" 2>/dev/null | sed -n 's/.*intr = \\([^;]*\\);.*/\\1/p')"`,
|
|
200926
|
-
`(
|
|
200927
|
-
while kill -0 "$leader_pid" 2>/dev/null; do
|
|
200928
|
-
state="$(stty -a <"$tty_device" 2>/dev/null || true)"
|
|
200929
|
-
if [ -z "$state" ]; then
|
|
200930
|
-
sleep 0.2
|
|
200931
|
-
continue
|
|
200932
|
-
fi
|
|
200933
|
-
if printf '%s\\n' "$state" | grep -q -- '-isig'; then
|
|
200934
|
-
if ! printf '%s\\n' "$state" | grep -q 'intr = <undef>;'; then
|
|
200935
|
-
stty intr undef <"$tty_device" 2>/dev/null || true
|
|
200936
|
-
fi
|
|
200937
|
-
else
|
|
200938
|
-
if printf '%s\\n' "$state" | grep -q 'intr = <undef>;' && [ -n "$orig_intr" ] && [ "$orig_intr" != "<undef>" ]; then
|
|
200939
|
-
stty intr "$orig_intr" <"$tty_device" 2>/dev/null || true
|
|
200940
|
-
fi
|
|
200941
|
-
fi
|
|
200942
|
-
sleep 0.2
|
|
200943
|
-
done
|
|
200944
|
-
if [ -n "$orig_intr" ] && [ "$orig_intr" != "<undef>" ]; then
|
|
200945
|
-
stty intr "$orig_intr" <"$tty_device" 2>/dev/null || true
|
|
200946
|
-
fi
|
|
200947
|
-
) &
|
|
200948
|
-
tty_intr_guard_pid=$!
|
|
200949
|
-
trap cleanup EXIT
|
|
200950
|
-
if command -v bash >/dev/null 2>&1; then
|
|
200951
|
-
bash -il
|
|
200952
|
-
shell_status=$?
|
|
200953
|
-
else
|
|
200954
|
-
sh -i
|
|
200955
|
-
shell_status=$?
|
|
200956
|
-
fi
|
|
200957
|
-
cleanup
|
|
200958
|
-
exit "$shell_status"`
|
|
200959
|
-
].join("; ");
|
|
200904
|
+
buildModalInteractiveCommand = () => "exec bash -il || exec sh -i";
|
|
200960
200905
|
parseEnvSize = (value) => {
|
|
200961
200906
|
if (!value) return void 0;
|
|
200962
200907
|
const parsed = Number(value);
|
|
@@ -220381,4 +220326,4 @@ smol-toml/dist/index.js:
|
|
|
220381
220326
|
*/
|
|
220382
220327
|
//# sourceMappingURL=dvb.cjs.map
|
|
220383
220328
|
|
|
220384
|
-
//# debugId=
|
|
220329
|
+
//# debugId=26ee0fe3-516b-5946-82b2-f97da351c971
|