@clawos-dev/clawd 0.2.59-beta.96.97d1a4f → 0.2.60-beta.97.61b36c0
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/cli.cjs +1 -92
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -16525,97 +16525,6 @@ ${i3.join("\n")}
|
|
|
16525
16525
|
}
|
|
16526
16526
|
});
|
|
16527
16527
|
|
|
16528
|
-
// ../node_modules/.pnpm/@lydell+node-pty@1.2.0-beta.12/node_modules/@lydell/node-pty/package.json
|
|
16529
|
-
var require_package2 = __commonJS({
|
|
16530
|
-
"../node_modules/.pnpm/@lydell+node-pty@1.2.0-beta.12/node_modules/@lydell/node-pty/package.json"(exports2, module2) {
|
|
16531
|
-
module2.exports = {
|
|
16532
|
-
name: "@lydell/node-pty",
|
|
16533
|
-
description: "Smaller distribution of node-pty.",
|
|
16534
|
-
author: "Simon Lydell",
|
|
16535
|
-
version: "1.2.0-beta.12",
|
|
16536
|
-
license: "MIT",
|
|
16537
|
-
type: "commonjs",
|
|
16538
|
-
exports: {
|
|
16539
|
-
".": {
|
|
16540
|
-
types: "./node-pty.d.ts",
|
|
16541
|
-
default: "./index.js"
|
|
16542
|
-
}
|
|
16543
|
-
},
|
|
16544
|
-
types: "./node-pty.d.ts",
|
|
16545
|
-
repository: {
|
|
16546
|
-
type: "git",
|
|
16547
|
-
url: "git://github.com/lydell/node-pty.git"
|
|
16548
|
-
},
|
|
16549
|
-
keywords: [
|
|
16550
|
-
"pty",
|
|
16551
|
-
"tty",
|
|
16552
|
-
"terminal",
|
|
16553
|
-
"pseudoterminal",
|
|
16554
|
-
"forkpty",
|
|
16555
|
-
"openpty",
|
|
16556
|
-
"prebuild",
|
|
16557
|
-
"prebuilt"
|
|
16558
|
-
],
|
|
16559
|
-
optionalDependencies: {
|
|
16560
|
-
"@lydell/node-pty-darwin-arm64": "1.2.0-beta.12",
|
|
16561
|
-
"@lydell/node-pty-darwin-x64": "1.2.0-beta.12",
|
|
16562
|
-
"@lydell/node-pty-linux-arm64": "1.2.0-beta.12",
|
|
16563
|
-
"@lydell/node-pty-linux-x64": "1.2.0-beta.12",
|
|
16564
|
-
"@lydell/node-pty-win32-arm64": "1.2.0-beta.12",
|
|
16565
|
-
"@lydell/node-pty-win32-x64": "1.2.0-beta.12"
|
|
16566
|
-
}
|
|
16567
|
-
};
|
|
16568
|
-
}
|
|
16569
|
-
});
|
|
16570
|
-
|
|
16571
|
-
// ../node_modules/.pnpm/@lydell+node-pty@1.2.0-beta.12/node_modules/@lydell/node-pty/index.js
|
|
16572
|
-
var require_node_pty = __commonJS({
|
|
16573
|
-
"../node_modules/.pnpm/@lydell+node-pty@1.2.0-beta.12/node_modules/@lydell/node-pty/index.js"(exports2, module2) {
|
|
16574
|
-
"use strict";
|
|
16575
|
-
var PACKAGE_NAME = `@lydell/node-pty-${process.platform}-${process.arch}`;
|
|
16576
|
-
var help = `
|
|
16577
|
-
This can happen if you use the "--omit=optional" (or "--no-optional") npm flag.
|
|
16578
|
-
The "optionalDependencies" package.json feature is used to install the correct
|
|
16579
|
-
binary executable for your current platform. Remove that flag to use @lydell/node-pty.
|
|
16580
|
-
|
|
16581
|
-
This can also happen if the "node_modules" folder was copied between two operating systems
|
|
16582
|
-
that need different binaries - including "virtual" operating systems like Docker and WSL.
|
|
16583
|
-
If so, try installing with npm rather than copying "node_modules".
|
|
16584
|
-
`.trim();
|
|
16585
|
-
function requirePlatformSpecificPackage() {
|
|
16586
|
-
try {
|
|
16587
|
-
return require(PACKAGE_NAME);
|
|
16588
|
-
} catch (error) {
|
|
16589
|
-
if (error && error.code === "MODULE_NOT_FOUND") {
|
|
16590
|
-
const optionalDependencies = getOptionalDependencies();
|
|
16591
|
-
throw new Error(
|
|
16592
|
-
optionalDependencies === void 0 ? `The @lydell/node-pty package could not find the platform-specific package: ${PACKAGE_NAME}
|
|
16593
|
-
|
|
16594
|
-
${help}
|
|
16595
|
-
|
|
16596
|
-
Your platform (${process.platform}-${process.arch}) might not be supported.` : PACKAGE_NAME in optionalDependencies ? `The @lydell/node-pty package supports your platform (${process.platform}-${process.arch}), but it could not find the platform-specific package for it: ${PACKAGE_NAME}
|
|
16597
|
-
|
|
16598
|
-
${help}` : `The @lydell/node-pty package currently does not support your platform: ${process.platform}-${process.arch}`,
|
|
16599
|
-
{ cause: error }
|
|
16600
|
-
);
|
|
16601
|
-
} else {
|
|
16602
|
-
throw error;
|
|
16603
|
-
}
|
|
16604
|
-
}
|
|
16605
|
-
}
|
|
16606
|
-
function getOptionalDependencies() {
|
|
16607
|
-
try {
|
|
16608
|
-
return require_package2().optionalDependencies;
|
|
16609
|
-
} catch (_error) {
|
|
16610
|
-
return void 0;
|
|
16611
|
-
}
|
|
16612
|
-
}
|
|
16613
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
16614
|
-
exports2.native = exports2.open = exports2.createTerminal = exports2.fork = exports2.spawn = void 0;
|
|
16615
|
-
module2.exports = requirePlatformSpecificPackage();
|
|
16616
|
-
}
|
|
16617
|
-
});
|
|
16618
|
-
|
|
16619
16528
|
// ../node_modules/.pnpm/ws@8.20.0/node_modules/ws/lib/constants.js
|
|
16620
16529
|
var require_constants2 = __commonJS({
|
|
16621
16530
|
"../node_modules/.pnpm/ws@8.20.0/node_modules/ws/lib/constants.js"(exports2, module2) {
|
|
@@ -24502,7 +24411,7 @@ var PtyChildProcess = class extends import_node_events.EventEmitter {
|
|
|
24502
24411
|
};
|
|
24503
24412
|
|
|
24504
24413
|
// src/pty/pty-transport.ts
|
|
24505
|
-
var nodePty = __toESM(
|
|
24414
|
+
var nodePty = __toESM(require("@lydell/node-pty"), 1);
|
|
24506
24415
|
function spawnPty(opts) {
|
|
24507
24416
|
const term = nodePty.spawn(opts.command, opts.args, {
|
|
24508
24417
|
name: "xterm-256color",
|
package/package.json
CHANGED