wrongstack 0.31.1 → 0.41.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/package.json +2 -2
- package/src/index.ts +8 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrongstack",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.41.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "WrongStack — terminal AI coding agent. Installs `wrongstack` and `wstack` binaries (re-export of @wrongstack/cli).",
|
|
6
6
|
"keywords": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"src"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@wrongstack/cli": "0.
|
|
30
|
+
"@wrongstack/cli": "0.41.0"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "echo 'no build'",
|
package/src/index.ts
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
(err) => {
|
|
10
|
-
console.error(err?.stack ?? err);
|
|
11
|
-
process.exitCode = 1;
|
|
12
|
-
setTimeout(() => process.exit(1), 200).unref();
|
|
13
|
-
},
|
|
14
|
-
);
|
|
1
|
+
// @deprecated — kept only to document the re-export. The bin entry for
|
|
2
|
+
// this package is `./src/index.js` (see package.json `bin` field) and
|
|
3
|
+
// this .ts file was a byte-identical duplicate of it. The apps/wrongstack
|
|
4
|
+
// package is intentionally build-less (`build: "echo 'no build'"`) — it
|
|
5
|
+
// just re-exports @wrongstack/cli's `main`. Delete this file in a
|
|
6
|
+
// follow-up commit if the maintainers are comfortable dropping the TS
|
|
7
|
+
// source for a two-line bin shim. See H11 in the 2026-06-03 audit.
|
|
8
|
+
export {};
|