hermex 0.0.1-alpha.0 → 1.0.0
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 +4 -21
- package/dist/cli.js +1163 -2550
- package/dist/cli.js.map +1 -1
- package/package.json +18 -20
package/README.md
CHANGED
|
@@ -62,7 +62,7 @@ pnpm run clean
|
|
|
62
62
|
| Command | Description |
|
|
63
63
|
|---------|-------------|
|
|
64
64
|
| `analyze` | Analyze local files with detailed patterns |
|
|
65
|
-
| `
|
|
65
|
+
| ` ` | Quick component usage overview |
|
|
66
66
|
| `stats` | Detailed statistics with charts |
|
|
67
67
|
| `patterns` | List all detected usage patterns |
|
|
68
68
|
| `table` | Component and import tables |
|
|
@@ -180,16 +180,16 @@ See [Usage Patterns Guide](./docs/USAGE_PATTERNS_GUIDE.md) for details.
|
|
|
180
180
|
|
|
181
181
|
## 📦 Requirements
|
|
182
182
|
|
|
183
|
-
- Node.js
|
|
183
|
+
- Node.js 24+
|
|
184
184
|
- Git (for GitHub analysis)
|
|
185
185
|
|
|
186
186
|
## 🤝 Contributing
|
|
187
187
|
|
|
188
|
-
|
|
188
|
+
[Contributing](Contributing.md)
|
|
189
189
|
|
|
190
190
|
## 📄 License
|
|
191
191
|
|
|
192
|
-
|
|
192
|
+
[MIT License](License.md)
|
|
193
193
|
|
|
194
194
|
## 🎯 Use Cases
|
|
195
195
|
|
|
@@ -199,20 +199,3 @@ Internal use only.
|
|
|
199
199
|
4. **Component Analytics** - Track most-used components
|
|
200
200
|
5. **Multi-Repo Analysis** - Analyze microservices/microfrontends
|
|
201
201
|
6. **Code Quality** - Identify complex usage patterns
|
|
202
|
-
|
|
203
|
-
## 🚀 Getting Started
|
|
204
|
-
|
|
205
|
-
```bash
|
|
206
|
-
# Install
|
|
207
|
-
npm install
|
|
208
|
-
|
|
209
|
-
# View help
|
|
210
|
-
node cli.js --help
|
|
211
|
-
node cli.js github --help
|
|
212
|
-
|
|
213
|
-
# Try some examples (see docs/EXAMPLES.md)
|
|
214
|
-
node cli.js analyze "src/**/*.tsx" -l @mui/material
|
|
215
|
-
node cli.js github owner/repo -l @mui/material
|
|
216
|
-
```
|
|
217
|
-
|
|
218
|
-
For detailed documentation, see the [docs](./docs) folder.
|