claude-code-marketplace 0.7.0 → 0.7.1
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/README.md +1 -1
- package/package.json +1 -1
- package/server.js +1 -1
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ npx claude-code-marketplace --port 8080
|
|
|
38
38
|
### Options
|
|
39
39
|
|
|
40
40
|
```
|
|
41
|
-
--port <number> Custom port (default:
|
|
41
|
+
--port <number> Custom port (default: 3542)
|
|
42
42
|
--project <path> Project directory for project-scoped plugins
|
|
43
43
|
--open Open browser on start
|
|
44
44
|
```
|
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -34,7 +34,7 @@ function getArg(name) {
|
|
|
34
34
|
|
|
35
35
|
let projectPath = getArg('project') || process.cwd();
|
|
36
36
|
if (projectPath.startsWith('~')) projectPath = projectPath.replace('~', os.homedir());
|
|
37
|
-
const PORT = parseInt(getArg('port') || process.env.PORT || '
|
|
37
|
+
const PORT = parseInt(getArg('port') || process.env.PORT || '3542', 10);
|
|
38
38
|
|
|
39
39
|
function toUnixPath(p) {
|
|
40
40
|
return p ? p.replace(/\\/g, '/') : p;
|