@wrongstack/core 0.250.0 → 0.255.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/{agent-bridge-4gc0vfW2.d.ts → agent-bridge-l_DsFEbr.d.ts} +1 -1
- package/dist/{agent-subagent-runner-Dz-9kiE6.d.ts → agent-subagent-runner-DhYLgAJo.d.ts} +3 -3
- package/dist/{brain-sCZ3lCjq.d.ts → brain-BaQsRNka.d.ts} +17 -0
- package/dist/coordination/index.d.ts +10 -10
- package/dist/coordination/index.js +132 -0
- package/dist/coordination/index.js.map +1 -1
- package/dist/defaults/index.d.ts +11 -11
- package/dist/execution/index.d.ts +7 -7
- package/dist/extension/index.d.ts +3 -3
- package/dist/{goal-preamble-BjJpnLW4.d.ts → goal-preamble-BgoPmZ8l.d.ts} +4 -4
- package/dist/{index-Dy8OwfBD.d.ts → index-BilZMsOK.d.ts} +3 -3
- package/dist/{index-IehiNryU.d.ts → index-Csoc_bKs.d.ts} +2 -2
- package/dist/index.d.ts +21 -21
- package/dist/index.js +150 -3
- package/dist/index.js.map +1 -1
- package/dist/infrastructure/index.d.ts +2 -2
- package/dist/infrastructure/index.js +12 -0
- package/dist/infrastructure/index.js.map +1 -1
- package/dist/kernel/index.d.ts +4 -4
- package/dist/kernel/index.js.map +1 -1
- package/dist/{multi-agent-coordinator-CnbEqpv0.d.ts → multi-agent-coordinator-Bs-M0Mo6.d.ts} +1 -1
- package/dist/{null-fleet-bus-Do1OLYpj.d.ts → null-fleet-bus-CWdU1_cO.d.ts} +4 -4
- package/dist/observability/index.d.ts +1 -1
- package/dist/{package-outdated-watcher-CA5GGB4C.d.ts → package-outdated-watcher-Dz-eNZlQ.d.ts} +23 -2
- package/dist/{parallel-eternal-engine-UZg1xOzE.d.ts → parallel-eternal-engine-CAMabk-X.d.ts} +4 -4
- package/dist/{path-resolver-BaP06Owy.d.ts → path-resolver-B7VjhUHq.d.ts} +1 -1
- package/dist/{pipeline-D1n-gQI-.d.ts → pipeline-Bxa3wDcy.d.ts} +41 -1
- package/dist/{plan-templates-BUVRY0pU.d.ts → plan-templates-D3guWwTi.d.ts} +1 -1
- package/dist/{provider-runner-D0HgUqwV.d.ts → provider-runner-C8_e4Lo1.d.ts} +1 -1
- package/dist/sdd/index.d.ts +4 -4
- package/dist/storage/index.d.ts +5 -5
- package/dist/types/index.d.ts +10 -10
- package/dist/types/index.js +12 -0
- package/dist/types/index.js.map +1 -1
- package/dist/utils/index.js +2 -0
- package/dist/utils/index.js.map +1 -1
- package/package.json +2 -2
package/dist/utils/index.js
CHANGED
|
@@ -838,8 +838,10 @@ function buildChildEnv(optsOrSessionId) {
|
|
|
838
838
|
);
|
|
839
839
|
}
|
|
840
840
|
const out = {};
|
|
841
|
+
const nodeEnvDefaulted = process.env["WRONGSTACK_NODE_ENV_DEFAULTED"] === "1";
|
|
841
842
|
for (const [k, v] of Object.entries(process.env)) {
|
|
842
843
|
if (v === void 0) continue;
|
|
844
|
+
if (nodeEnvDefaulted && (k === "NODE_ENV" || k === "WRONGSTACK_NODE_ENV_DEFAULTED")) continue;
|
|
843
845
|
if (passthrough) {
|
|
844
846
|
out[k] = v;
|
|
845
847
|
continue;
|