sloppycode 0.2.150 → 0.2.151

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.
Binary file
Binary file
package/bin/slopcode CHANGED
@@ -36,6 +36,7 @@ function run(target, options = {}) {
36
36
  const fb = childProcess.spawnSync("bun", ["run", options.fallback, ...(options.args || process.argv.slice(2))], {
37
37
  stdio: "inherit",
38
38
  env: fbEnv,
39
+ cwd: path.dirname(options.fallback),
39
40
  })
40
41
  if (fb.error) {
41
42
  console.error(fb.error.message)
package/bundle/index.js CHANGED
@@ -62710,7 +62710,7 @@ var init_logging = __esm(async () => {
62710
62710
  });
62711
62711
 
62712
62712
  // ../core/src/installation/version.ts
62713
- var InstallationVersion = "0.2.150", InstallationChannel = "latest", InstallationLocal;
62713
+ var InstallationVersion = "0.2.151", InstallationChannel = "latest", InstallationLocal;
62714
62714
  var init_version = __esm(() => {
62715
62715
  InstallationLocal = InstallationChannel === "local";
62716
62716
  });
@@ -840162,7 +840162,11 @@ var TuiThreadCommand = cmd({
840162
840162
  const req = input4;
840163
840163
  const res = await serverApp.fetch(new Request(req.url, { method: req.method, headers: req.headers, body: req.body }));
840164
840164
  const responseBody2 = await res.text();
840165
- result7 = { status: res.status, headers: Object.fromEntries(res.headers.entries()), body: responseBody2 };
840165
+ result7 = {
840166
+ status: res.status,
840167
+ headers: Object.fromEntries(res.headers.entries()),
840168
+ body: responseBody2
840169
+ };
840166
840170
  } else if (method2 === "server") {
840167
840171
  const net = input4;
840168
840172
  const server4 = await Server4.listen(net);
package/bundle/worker.js CHANGED
@@ -84409,7 +84409,7 @@ var init_logging = __esm(async () => {
84409
84409
  });
84410
84410
 
84411
84411
  // ../core/src/installation/version.ts
84412
- var InstallationVersion = "0.2.150", InstallationChannel = "latest", InstallationLocal;
84412
+ var InstallationVersion = "0.2.151", InstallationChannel = "latest", InstallationLocal;
84413
84413
  var init_version = __esm(() => {
84414
84414
  InstallationLocal = InstallationChannel === "local";
84415
84415
  });
package/package.json CHANGED
@@ -37,20 +37,20 @@
37
37
  "scripts": {
38
38
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
39
39
  },
40
- "version": "0.2.150",
40
+ "version": "0.2.151",
41
41
  "license": "MIT",
42
42
  "optionalDependencies": {
43
- "slopcode-bin-linux-arm64": "0.2.150",
44
- "slopcode-bin-linux-x64-baseline-musl": "0.2.150",
45
- "slopcode-bin-darwin-x64-baseline": "0.2.150",
46
- "slopcode-bin-linux-x64-musl": "0.2.150",
47
- "slopcode-bin-linux-x64": "0.2.150",
48
- "slopcode-bin-darwin-x64": "0.2.150",
49
- "slopcode-bin-linux-arm64-musl": "0.2.150",
50
- "slopcode-bin-darwin-arm64": "0.2.150",
51
- "slopcode-bin-windows-x64": "0.2.150",
52
- "slopcode-bin-windows-x64-baseline": "0.2.150",
53
- "slopcode-bin-linux-x64-baseline": "0.2.150",
43
+ "slopcode-bin-linux-arm64": "0.2.151",
44
+ "slopcode-bin-linux-x64-baseline-musl": "0.2.151",
45
+ "slopcode-bin-darwin-x64-baseline": "0.2.151",
46
+ "slopcode-bin-linux-x64-musl": "0.2.151",
47
+ "slopcode-bin-linux-x64": "0.2.151",
48
+ "slopcode-bin-darwin-x64": "0.2.151",
49
+ "slopcode-bin-linux-arm64-musl": "0.2.151",
50
+ "slopcode-bin-darwin-arm64": "0.2.151",
51
+ "slopcode-bin-windows-x64": "0.2.151",
52
+ "slopcode-bin-windows-x64-baseline": "0.2.151",
53
+ "slopcode-bin-linux-x64-baseline": "0.2.151",
54
54
  "@oven/bun-linux-aarch64-android": "1.3.14",
55
55
  "@oven/bun-linux-x64-android": "1.3.14"
56
56
  }