mustard-claude 2.0.1 → 2.0.2
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 +22 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -12,12 +12,32 @@ Framework-agnostic CLI for setting up and updating Claude Code projects.
|
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
|
+
### Global Installation
|
|
16
|
+
|
|
17
|
+
Install globally to use the `mustard` command anywhere:
|
|
18
|
+
|
|
15
19
|
```bash
|
|
16
|
-
#
|
|
20
|
+
# Using npm
|
|
17
21
|
npm install -g mustard-claude
|
|
18
22
|
|
|
19
|
-
#
|
|
23
|
+
# Using pnpm
|
|
24
|
+
pnpm add -g mustard-claude
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Run Without Installing
|
|
28
|
+
|
|
29
|
+
Use `npx` or `pnpx` to run without a global installation:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
# Using npx (npm)
|
|
20
33
|
npx mustard-claude init
|
|
34
|
+
npx mustard-claude update
|
|
35
|
+
npx mustard-claude sync
|
|
36
|
+
|
|
37
|
+
# Using pnpx (pnpm)
|
|
38
|
+
pnpx mustard-claude init
|
|
39
|
+
pnpx mustard-claude update
|
|
40
|
+
pnpx mustard-claude sync
|
|
21
41
|
```
|
|
22
42
|
|
|
23
43
|
## Commands
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mustard-claude",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Framework-agnostic CLI for Claude Code project setup",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"chalk": "^5.3.0",
|
|
41
41
|
"commander": "^12.1.0",
|
|
42
|
-
"glob": "^
|
|
42
|
+
"glob": "^11.0.0",
|
|
43
43
|
"inquirer": "^9.2.15",
|
|
44
44
|
"ollama": "^0.5.11",
|
|
45
45
|
"ora": "^8.0.1"
|