scream-code 0.4.6 → 0.4.7

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.
Files changed (2) hide show
  1. package/dist/main.mjs +0 -7
  2. package/package.json +2 -2
package/dist/main.mjs CHANGED
@@ -136599,13 +136599,6 @@ async function handleMigrateCommand() {
136599
136599
  process.exit(0);
136600
136600
  }
136601
136601
  function main() {
136602
- const swallowEpipe = (stream) => {
136603
- stream.on("error", (error) => {
136604
- if (error.code === "EPIPE") process.exit(0);
136605
- });
136606
- };
136607
- swallowEpipe(process.stdout);
136608
- swallowEpipe(process.stderr);
136609
136602
  initProcessName();
136610
136603
  installCrashHandlers();
136611
136604
  const version = getVersion();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scream-code",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "The Starting Point for Next-Gen Agents",
5
5
  "license": "MIT",
6
6
  "author": "ScreamCli",
@@ -57,9 +57,9 @@
57
57
  "@types/semver": "^7.7.0",
58
58
  "tsx": "^4.21.0",
59
59
  "@scream-cli/agent-core": "^0.3.10",
60
- "@scream-cli/migration-legacy": "^0.3.10",
61
60
  "@scream-cli/config": "^0.3.10",
62
61
  "@scream-cli/scream-code-sdk": "^0.3.10",
62
+ "@scream-cli/migration-legacy": "^0.3.10",
63
63
  "@scream-cli/scream-telemetry": "^0.3.10",
64
64
  "@scream-code/memory": "0.3.10"
65
65
  },