@boxes-dev/dvb 1.0.111 → 1.0.113
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 +5 -5
- package/dist/bin/dvbd.cjs +5 -5
- package/dist/prompts/remote-apply-modal.md +10 -0
- package/package.json +1 -1
package/dist/bin/dvb.cjs
CHANGED
|
@@ -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.113";
|
|
88692
|
+
const rawGitSha = "6ab69a33986a1f86886357d0c058b026fc1a1e49";
|
|
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.113";
|
|
120683
|
+
const rawGitSha = "6ab69a33986a1f86886357d0c058b026fc1a1e49";
|
|
120684
|
+
const rawSentryRelease = "boxes-dev-dvb@1.0.113+6ab69a33986a1f86886357d0c058b026fc1a1e49";
|
|
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;
|
package/dist/bin/dvbd.cjs
CHANGED
|
@@ -88612,8 +88612,8 @@ var init_otel = __esm({
|
|
|
88612
88612
|
return trimmed && trimmed.length > 0 ? trimmed : void 0;
|
|
88613
88613
|
};
|
|
88614
88614
|
readBuildMetadata = () => {
|
|
88615
|
-
const rawPackageVersion = "1.0.
|
|
88616
|
-
const rawGitSha = "
|
|
88615
|
+
const rawPackageVersion = "1.0.113";
|
|
88616
|
+
const rawGitSha = "6ab69a33986a1f86886357d0c058b026fc1a1e49";
|
|
88617
88617
|
const packageVersion = typeof rawPackageVersion === "string" ? rawPackageVersion : void 0;
|
|
88618
88618
|
const gitSha = typeof rawGitSha === "string" ? rawGitSha : void 0;
|
|
88619
88619
|
return { packageVersion, gitSha };
|
|
@@ -120532,9 +120532,9 @@ var init_sentry = __esm({
|
|
|
120532
120532
|
sentryEnabled = false;
|
|
120533
120533
|
uncaughtExceptionMonitorInstalled = false;
|
|
120534
120534
|
readBuildMetadata2 = () => {
|
|
120535
|
-
const rawPackageVersion = "1.0.
|
|
120536
|
-
const rawGitSha = "
|
|
120537
|
-
const rawSentryRelease = "boxes-dev-dvb@1.0.
|
|
120535
|
+
const rawPackageVersion = "1.0.113";
|
|
120536
|
+
const rawGitSha = "6ab69a33986a1f86886357d0c058b026fc1a1e49";
|
|
120537
|
+
const rawSentryRelease = "boxes-dev-dvb@1.0.113+6ab69a33986a1f86886357d0c058b026fc1a1e49";
|
|
120538
120538
|
const packageVersion = typeof rawPackageVersion === "string" ? rawPackageVersion : void 0;
|
|
120539
120539
|
const gitSha = typeof rawGitSha === "string" ? rawGitSha : void 0;
|
|
120540
120540
|
const sentryRelease = typeof rawSentryRelease === "string" ? rawSentryRelease : void 0;
|
|
@@ -43,6 +43,16 @@ a Fly.io Sprite runtime. Do not assume Sprite-only filesystem conventions such a
|
|
|
43
43
|
- Prefer the tooling that is already present on the machine over reinstalling.
|
|
44
44
|
- Install only missing dependencies needed to run this project locally.
|
|
45
45
|
|
|
46
|
+
### Environment constraints (critical):
|
|
47
|
+
|
|
48
|
+
- The user connects to this machine via TTY attach to a remote shell session (`/bin/sh -lc <command>`)
|
|
49
|
+
- Connection bootstrap depends on remote commands succeeding under `/bin/sh -lc` (POSIX `sh`, not Bash) before TTY attach.
|
|
50
|
+
- Do NOT modify global shell init (`/etc/profile`, `/etc/profile.d/*`, `/root/.profile`, etc.).
|
|
51
|
+
- If shell-init edits are unavoidable, they must be POSIX-`sh` safe and non-chatty; guard Bash-only logic with:
|
|
52
|
+
if [ -n "${BASH:-}" ] && [ "${BASH}" != "/bin/sh" ]; then ... fi
|
|
53
|
+
- Never put Bash-only syntax in code that `sh` may source (`[[ ]]`, `source`, arrays, `export -a`, etc.).
|
|
54
|
+
- Breaking these rules can brick user access to the machine.
|
|
55
|
+
|
|
46
56
|
---
|
|
47
57
|
|
|
48
58
|
Important note on secrets:
|