@wrongstack/tools 0.301.0 → 0.302.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/audit.js +1 -1
- package/dist/builtin.js +1 -1
- package/dist/format.js +1 -1
- package/dist/index.js +1 -1
- package/dist/install.js +1 -1
- package/dist/languages/index.js +1 -1
- package/dist/lint.js +1 -1
- package/dist/outdated.js +1 -1
- package/dist/pack.js +1 -1
- package/dist/test.js +1 -1
- package/dist/tool-tier.js +1 -1
- package/dist/typecheck.js +1 -1
- package/package.json +3 -3
package/dist/audit.js
CHANGED
|
@@ -792,7 +792,7 @@ function getProcessRegistry() {
|
|
|
792
792
|
// src/_spawn-stream.ts
|
|
793
793
|
var isWin = process.platform === "win32";
|
|
794
794
|
async function* spawnStream(opts) {
|
|
795
|
-
const max = opts.maxBytes ??
|
|
795
|
+
const max = opts.maxBytes ?? 999999999;
|
|
796
796
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
797
797
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
798
798
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/dist/builtin.js
CHANGED
|
@@ -848,7 +848,7 @@ import {
|
|
|
848
848
|
} from "@wrongstack/core/observability";
|
|
849
849
|
import { buildChildEnv } from "@wrongstack/core/utils";
|
|
850
850
|
async function* spawnStream(opts) {
|
|
851
|
-
const max = opts.maxBytes ??
|
|
851
|
+
const max = opts.maxBytes ?? 999999999;
|
|
852
852
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
853
853
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
854
854
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/dist/format.js
CHANGED
|
@@ -792,7 +792,7 @@ function getProcessRegistry() {
|
|
|
792
792
|
// src/_spawn-stream.ts
|
|
793
793
|
var isWin = process.platform === "win32";
|
|
794
794
|
async function* spawnStream(opts) {
|
|
795
|
-
const max = opts.maxBytes ??
|
|
795
|
+
const max = opts.maxBytes ?? 999999999;
|
|
796
796
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
797
797
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
798
798
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/dist/index.js
CHANGED
|
@@ -851,7 +851,7 @@ import {
|
|
|
851
851
|
} from "@wrongstack/core/observability";
|
|
852
852
|
import { buildChildEnv } from "@wrongstack/core/utils";
|
|
853
853
|
async function* spawnStream(opts) {
|
|
854
|
-
const max = opts.maxBytes ??
|
|
854
|
+
const max = opts.maxBytes ?? 999999999;
|
|
855
855
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
856
856
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
857
857
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/dist/install.js
CHANGED
|
@@ -799,7 +799,7 @@ function getProcessRegistry() {
|
|
|
799
799
|
// src/_spawn-stream.ts
|
|
800
800
|
var isWin = process.platform === "win32";
|
|
801
801
|
async function* spawnStream(opts) {
|
|
802
|
-
const max = opts.maxBytes ??
|
|
802
|
+
const max = opts.maxBytes ?? 999999999;
|
|
803
803
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
804
804
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
805
805
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/dist/languages/index.js
CHANGED
|
@@ -2920,7 +2920,7 @@ function getProcessRegistry() {
|
|
|
2920
2920
|
// src/_spawn-stream.ts
|
|
2921
2921
|
var isWin = process.platform === "win32";
|
|
2922
2922
|
async function* spawnStream(opts) {
|
|
2923
|
-
const max = opts.maxBytes ??
|
|
2923
|
+
const max = opts.maxBytes ?? 999999999;
|
|
2924
2924
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
2925
2925
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
2926
2926
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/dist/lint.js
CHANGED
|
@@ -792,7 +792,7 @@ function getProcessRegistry() {
|
|
|
792
792
|
// src/_spawn-stream.ts
|
|
793
793
|
var isWin = process.platform === "win32";
|
|
794
794
|
async function* spawnStream(opts) {
|
|
795
|
-
const max = opts.maxBytes ??
|
|
795
|
+
const max = opts.maxBytes ?? 999999999;
|
|
796
796
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
797
797
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
798
798
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/dist/outdated.js
CHANGED
|
@@ -3145,7 +3145,7 @@ import {
|
|
|
3145
3145
|
} from "@wrongstack/core/observability";
|
|
3146
3146
|
import { buildChildEnv } from "@wrongstack/core/utils";
|
|
3147
3147
|
async function* spawnStream(opts) {
|
|
3148
|
-
const max = opts.maxBytes ??
|
|
3148
|
+
const max = opts.maxBytes ?? 999999999;
|
|
3149
3149
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
3150
3150
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
3151
3151
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/dist/pack.js
CHANGED
|
@@ -848,7 +848,7 @@ import {
|
|
|
848
848
|
} from "@wrongstack/core/observability";
|
|
849
849
|
import { buildChildEnv } from "@wrongstack/core/utils";
|
|
850
850
|
async function* spawnStream(opts) {
|
|
851
|
-
const max = opts.maxBytes ??
|
|
851
|
+
const max = opts.maxBytes ?? 999999999;
|
|
852
852
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
853
853
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
854
854
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/dist/test.js
CHANGED
|
@@ -795,7 +795,7 @@ function getProcessRegistry() {
|
|
|
795
795
|
// src/_spawn-stream.ts
|
|
796
796
|
var isWin = process.platform === "win32";
|
|
797
797
|
async function* spawnStream(opts) {
|
|
798
|
-
const max = opts.maxBytes ??
|
|
798
|
+
const max = opts.maxBytes ?? 999999999;
|
|
799
799
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
800
800
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
801
801
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/dist/tool-tier.js
CHANGED
|
@@ -848,7 +848,7 @@ import {
|
|
|
848
848
|
} from "@wrongstack/core/observability";
|
|
849
849
|
import { buildChildEnv } from "@wrongstack/core/utils";
|
|
850
850
|
async function* spawnStream(opts) {
|
|
851
|
-
const max = opts.maxBytes ??
|
|
851
|
+
const max = opts.maxBytes ?? 999999999;
|
|
852
852
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
853
853
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
854
854
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/dist/typecheck.js
CHANGED
|
@@ -795,7 +795,7 @@ function getProcessRegistry() {
|
|
|
795
795
|
// src/_spawn-stream.ts
|
|
796
796
|
var isWin = process.platform === "win32";
|
|
797
797
|
async function* spawnStream(opts) {
|
|
798
|
-
const max = opts.maxBytes ??
|
|
798
|
+
const max = opts.maxBytes ?? 999999999;
|
|
799
799
|
const flushAt = opts.flushBytes ?? 4 * 1024;
|
|
800
800
|
const maxQueue = opts.maxQueueSize ?? 500;
|
|
801
801
|
const maxQueueBytes = opts.maxQueueBytes ?? 1024 * 1024;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/tools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.302.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "WrongStack built-in tools: read/write/edit, bash/exec, grep/glob, git, fetch, test, lint, and more.",
|
|
6
6
|
"repository": {
|
|
@@ -250,8 +250,8 @@
|
|
|
250
250
|
"@typescript/typescript6": "^6.0.2",
|
|
251
251
|
"turndown": "^7.2.4",
|
|
252
252
|
"undici": "^8.9.0",
|
|
253
|
-
"@wrongstack/core": "0.
|
|
254
|
-
"@wrongstack/kanban": "0.
|
|
253
|
+
"@wrongstack/core": "0.302.0",
|
|
254
|
+
"@wrongstack/kanban": "0.302.0"
|
|
255
255
|
},
|
|
256
256
|
"devDependencies": {
|
|
257
257
|
"@types/node": "^26.1.2",
|