fullcourtdefense-cli 1.5.2 → 1.5.3
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/commands/mcpGateway.js +3 -1
- package/dist/version.json +1 -1
- package/package.json +1 -1
|
@@ -811,7 +811,9 @@ function parseClientList(value) {
|
|
|
811
811
|
};
|
|
812
812
|
const requested = raw === 'all'
|
|
813
813
|
? exports.ALL_GATEWAY_CLIENTS.slice()
|
|
814
|
-
:
|
|
814
|
+
// Accept commas OR whitespace: some shells (PowerShell) split a comma list
|
|
815
|
+
// into separate argv tokens that get re-joined with spaces.
|
|
816
|
+
: raw.split(/[\s,]+/).map(part => part.trim()).filter(Boolean);
|
|
815
817
|
const clients = requested.map(client => aliases[client]);
|
|
816
818
|
const unknown = requested.filter((part, index) => !clients[index]);
|
|
817
819
|
if (unknown.length > 0) {
|
package/dist/version.json
CHANGED