pnpm-catalog-updates 0.7.19 → 1.0.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 +27 -0
- package/dist/index.js +10212 -6761
- package/dist/index.js.map +1 -1
- package/package.json +14 -14
- package/src/cli/commands/checkCommand.ts +62 -62
- package/src/cli/commands/initCommand.ts +90 -90
- package/src/cli/commands/securityCommand.ts +172 -172
- package/src/cli/commands/updateCommand.ts +227 -68
- package/src/cli/formatters/outputFormatter.ts +500 -280
- package/src/cli/formatters/progressBar.ts +228 -228
- package/src/cli/index.ts +407 -167
- package/src/cli/interactive/interactivePrompts.ts +100 -98
- package/src/cli/options/globalOptions.ts +143 -86
- package/src/cli/options/index.ts +1 -1
- package/src/cli/themes/colorTheme.ts +70 -70
- package/src/cli/validators/commandValidator.ts +118 -122
- package/src/cli/validators/index.ts +1 -1
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -51,8 +51,35 @@ pcu -a
|
|
|
51
51
|
pcu workspace
|
|
52
52
|
# or
|
|
53
53
|
pcu -s
|
|
54
|
+
|
|
55
|
+
# AI-powered analysis (NEW!)
|
|
56
|
+
pcu ai # Check available AI providers
|
|
57
|
+
pcu update --ai # Update with AI recommendations
|
|
58
|
+
pcu analyze react # Analyze package with AI
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### AI Analysis
|
|
62
|
+
|
|
63
|
+
PCU integrates with AI CLI tools (Gemini, Claude, Codex, Cursor) to provide:
|
|
64
|
+
|
|
65
|
+
- **Impact Analysis**: Understand how updates affect your code
|
|
66
|
+
- **Security Assessment**: AI-powered vulnerability analysis
|
|
67
|
+
- **Breaking Change Detection**: Detect potential compatibility issues
|
|
68
|
+
- **Update Recommendations**: Get intelligent suggestions for safe updates
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
# Check available AI providers
|
|
72
|
+
pcu ai
|
|
73
|
+
|
|
74
|
+
# Update with AI-powered analysis
|
|
75
|
+
pcu update --ai --interactive
|
|
76
|
+
|
|
77
|
+
# Analyze a specific package
|
|
78
|
+
pcu analyze react 19.0.0
|
|
54
79
|
```
|
|
55
80
|
|
|
81
|
+
**[Complete AI Analysis Documentation](https://pcu-cli.dev/en/ai-analysis)**
|
|
82
|
+
|
|
56
83
|

|
|
57
84
|
|
|
58
85
|
**[Complete Command Reference & Examples](https://pcu-cli.dev/en/command-reference)**
|