ninja-terminals 2.3.3 → 2.3.4
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/cli.js +1 -1
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -278,7 +278,7 @@ Next: Restart Claude Code, then tell Claude:
|
|
|
278
278
|
if (!hasFlag('--setup')) {
|
|
279
279
|
|
|
280
280
|
const port = parseInt(getArg('--port', '3300'), 10);
|
|
281
|
-
const terminals = parseInt(getArg('--terminals', '
|
|
281
|
+
const terminals = parseInt(getArg('--terminals', '4'), 10); // Full access
|
|
282
282
|
const cwd = getArg('--cwd', process.cwd());
|
|
283
283
|
const token = getArg('--token', null);
|
|
284
284
|
const offline = hasFlag('--offline');
|
package/package.json
CHANGED