@boxes-dev/dvb 1.0.80 → 1.0.81
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
|
@@ -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.81";
|
|
88692
|
+
const rawGitSha = "522045ac844438390e623320922f6de5f0b4988a";
|
|
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.81";
|
|
120683
|
+
const rawGitSha = "522045ac844438390e623320922f6de5f0b4988a";
|
|
120684
|
+
const rawSentryRelease = "boxes-dev-dvb@1.0.81+522045ac844438390e623320922f6de5f0b4988a";
|
|
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.81";
|
|
88616
|
+
const rawGitSha = "522045ac844438390e623320922f6de5f0b4988a";
|
|
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.81";
|
|
120536
|
+
const rawGitSha = "522045ac844438390e623320922f6de5f0b4988a";
|
|
120537
|
+
const rawSentryRelease = "boxes-dev-dvb@1.0.81+522045ac844438390e623320922f6de5f0b4988a";
|
|
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;
|
|
@@ -90,6 +90,10 @@ When doing these steps, lean careful / conservative:
|
|
|
90
90
|
- Do not delete user files or reset git history.
|
|
91
91
|
- Do not run arbitrary network calls unless it's required.
|
|
92
92
|
- If a step is unclear or unsafe, skip it and record a TODO.
|
|
93
|
+
- This run is non-interactive; do not rely on Ctrl-C.
|
|
94
|
+
- For long-running entrypoints, use a bounded run so they stop safely (for example `timeout --signal=INT --kill-after=15s 120s <command>`).
|
|
95
|
+
- If manual shutdown is required, you must capture the process PID when starting it and stop only that PID (or its process group), then `wait` for exit.
|
|
96
|
+
- Do not use pattern-based termination (`pkill -f`, `killall`) because it can kill the setup agent itself.
|
|
93
97
|
|
|
94
98
|
Write a short, actionable summary to `.devbox/setup.todo` with:
|
|
95
99
|
|
|
@@ -382,6 +382,10 @@ When doing these steps, lean careful / conservative:
|
|
|
382
382
|
- Do not delete user files or reset git history.
|
|
383
383
|
- Do not run arbitrary network calls unless it's required.
|
|
384
384
|
- If a step is unclear or unsafe, skip it and record a TODO.
|
|
385
|
+
- This run is non-interactive; do not rely on Ctrl-C.
|
|
386
|
+
- For long-running entrypoints, use a bounded run so they stop safely (for example `timeout --signal=INT --kill-after=15s 120s <command>`).
|
|
387
|
+
- If manual shutdown is required, you must capture the process PID when starting it and stop only that PID (or its process group), then `wait` for exit.
|
|
388
|
+
- Do not use pattern-based termination (`pkill -f`, `killall`) because it can kill the setup agent itself.
|
|
385
389
|
|
|
386
390
|
Write a short, actionable summary to `.devbox/setup.todo` with:
|
|
387
391
|
|