@programinglive/commiter 1.1.9 → 1.1.10

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.
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
2
+ <defs>
3
+ <linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
4
+ <stop offset="0%" style="stop-color:#6366f1;stop-opacity:1" />
5
+ <stop offset="100%" style="stop-color:#8b5cf6;stop-opacity:1" />
6
+ </linearGradient>
7
+ </defs>
8
+ <rect width="100" height="100" rx="20" fill="url(#grad)"/>
9
+ <text x="50" y="70" font-size="60" text-anchor="middle" fill="white">🚀</text>
10
+ </svg>
package/web/index.html ADDED
@@ -0,0 +1,502 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <meta name="description"
8
+ content="Commiter - Automated commit conventions and release management tool for JavaScript/TypeScript projects. Enforce conventional commits, generate changelogs, and automate semantic versioning.">
9
+ <meta name="keywords"
10
+ content="commit, conventional commits, standard-version, changelog, versioning, semantic release, git hooks, husky, commitlint">
11
+ <meta name="author" content="Programming Live">
12
+
13
+ <!-- Open Graph / Social Media -->
14
+ <meta property="og:type" content="website">
15
+ <meta property="og:title" content="Commiter - Automated Release Management">
16
+ <meta property="og:description"
17
+ content="Enforce commit conventions, generate changelogs, and automate semantic versioning for your projects.">
18
+ <meta property="og:url" content="https://github.com/programinglive/commiter">
19
+
20
+ <link rel="icon" type="image/svg+xml" href="favicon.svg">
21
+
22
+ <title>Commiter - Automated Commit Conventions & Release Management</title>
23
+
24
+ <link rel="stylesheet" href="css/style.css">
25
+ <link rel="preconnect" href="https://fonts.googleapis.com">
26
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
27
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"
28
+ rel="stylesheet">
29
+ </head>
30
+
31
+ <body>
32
+ <!-- Navigation -->
33
+ <nav class="navbar">
34
+ <div class="container">
35
+ <div class="nav-content">
36
+ <div class="logo">
37
+ <span class="logo-icon">🚀</span>
38
+ <span class="logo-text">Commiter</span>
39
+ </div>
40
+ <ul class="nav-links">
41
+ <li><a href="#features">Features</a></li>
42
+ <li><a href="#installation">Installation</a></li>
43
+ <li><a href="#usage">Usage</a></li>
44
+ <li><a href="#releases">Releases</a></li>
45
+ <li><a href="https://github.com/programinglive/commiter" target="_blank"
46
+ class="btn-github">GitHub</a></li>
47
+ </ul>
48
+ <button class="mobile-menu-toggle" aria-label="Toggle menu">
49
+ <span></span>
50
+ <span></span>
51
+ <span></span>
52
+ </button>
53
+ </div>
54
+ </div>
55
+ </nav>
56
+
57
+ <!-- Hero Section -->
58
+ <section class="hero">
59
+ <div class="container">
60
+ <div class="hero-content">
61
+ <div class="hero-badge">
62
+ <span class="badge-dot"></span>
63
+ <span>v1.1.9 - Latest Release</span>
64
+ </div>
65
+ <h1 class="hero-title">
66
+ Ship Releases with <span class="gradient-text">Confidence</span>
67
+ </h1>
68
+ <p class="hero-subtitle">
69
+ Commiter automates conventional commits, semantic versioning, and changelog generation.
70
+ One command to bootstrap your entire release workflow.
71
+ </p>
72
+ <div class="hero-actions">
73
+ <a href="#installation" class="btn btn-primary">
74
+ Get Started
75
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none">
76
+ <path d="M7.5 15L12.5 10L7.5 5" stroke="currentColor" stroke-width="2"
77
+ stroke-linecap="round" stroke-linejoin="round" />
78
+ </svg>
79
+ </a>
80
+ <a href="https://www.npmjs.com/package/@programinglive/commiter" target="_blank"
81
+ class="btn btn-secondary">
82
+ View on NPM
83
+ </a>
84
+ </div>
85
+ <div class="hero-stats">
86
+ <div class="stat-item">
87
+ <div class="stat-value">1.1.9</div>
88
+ <div class="stat-label">Latest Version</div>
89
+ </div>
90
+ <div class="stat-item">
91
+ <div class="stat-value">MIT</div>
92
+ <div class="stat-label">License</div>
93
+ </div>
94
+ <div class="stat-item">
95
+ <div class="stat-value">Node 18+</div>
96
+ <div class="stat-label">Compatibility</div>
97
+ </div>
98
+ </div>
99
+ </div>
100
+ <div class="hero-visual">
101
+ <div class="code-window">
102
+ <div class="window-header">
103
+ <div class="window-dots">
104
+ <span></span>
105
+ <span></span>
106
+ <span></span>
107
+ </div>
108
+ <div class="window-title">terminal</div>
109
+ </div>
110
+ <div class="window-content">
111
+ <div class="code-line"><span class="prompt">$</span> npx @programinglive/commiter</div>
112
+ <div class="code-line output">✓ Installing dependencies...</div>
113
+ <div class="code-line output">✓ Configuring Husky hooks...</div>
114
+ <div class="code-line output">✓ Setting up commitlint...</div>
115
+ <div class="code-line output success">🎉 Setup complete! Ready to release.</div>
116
+ <div class="code-line"><span class="prompt">$</span> npm run release:patch</div>
117
+ <div class="code-line output">✓ Running tests...</div>
118
+ <div class="code-line output">✓ Bumping version to 1.0.1...</div>
119
+ <div class="code-line output">✓ Updating CHANGELOG.md...</div>
120
+ <div class="code-line output success">🚀 Release v1.0.1 ready!</div>
121
+ <div class="code-line cursor">_</div>
122
+ </div>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </section>
127
+
128
+ <!-- Features Section -->
129
+ <section id="features" class="features">
130
+ <div class="container">
131
+ <div class="section-header">
132
+ <h2 class="section-title">Everything You Need for <span class="gradient-text">Professional
133
+ Releases</span></h2>
134
+ <p class="section-subtitle">Commiter handles the entire release workflow so you can focus on building
135
+ great software</p>
136
+ </div>
137
+ <div class="features-grid">
138
+ <div class="feature-card">
139
+ <div class="feature-icon">✅</div>
140
+ <h3>Enforced Conventions</h3>
141
+ <p>Automatically validate commit messages using Conventional Commits format with Husky and
142
+ commitlint</p>
143
+ </div>
144
+ <div class="feature-card">
145
+ <div class="feature-icon">🎯</div>
146
+ <h3>Semantic Versioning</h3>
147
+ <p>Intelligent version bumping based on commit types - major, minor, or patch releases</p>
148
+ </div>
149
+ <div class="feature-card">
150
+ <div class="feature-icon">📝</div>
151
+ <h3>Auto Changelog</h3>
152
+ <p>Beautiful CHANGELOG.md generation with icons for each commit type and organized sections</p>
153
+ </div>
154
+ <div class="feature-card">
155
+ <div class="feature-icon">🔒</div>
156
+ <h3>Git Hooks</h3>
157
+ <p>Pre-commit and commit-msg validation via Husky ensures quality before code is committed</p>
158
+ </div>
159
+ <div class="feature-card">
160
+ <div class="feature-icon">🧪</div>
161
+ <h3>Test Integration</h3>
162
+ <p>Automatically runs your test suite before releasing to prevent broken releases</p>
163
+ </div>
164
+ <div class="feature-card">
165
+ <div class="feature-icon">⚡</div>
166
+ <h3>Zero Config</h3>
167
+ <p>One command setup with sensible defaults. Works with npm, yarn, and pnpm out of the box</p>
168
+ </div>
169
+ </div>
170
+ </div>
171
+ </section>
172
+
173
+ <!-- Installation Section -->
174
+ <section id="installation" class="installation">
175
+ <div class="container">
176
+ <div class="section-header">
177
+ <h2 class="section-title">Quick <span class="gradient-text">Installation</span></h2>
178
+ <p class="section-subtitle">Get started in seconds with your preferred package manager</p>
179
+ </div>
180
+ <div class="install-options">
181
+ <div class="install-card">
182
+ <div class="install-header">
183
+ <h3>Global Installation</h3>
184
+ <span class="install-badge">Recommended</span>
185
+ </div>
186
+ <div class="code-block">
187
+ <code>npm install -g @programinglive/commiter</code>
188
+ <button class="copy-btn" data-copy="npm install -g @programinglive/commiter">
189
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none">
190
+ <rect x="7" y="7" width="10" height="10" rx="2" stroke="currentColor"
191
+ stroke-width="1.5" />
192
+ <path d="M3 13V5C3 3.89543 3.89543 3 5 3H13" stroke="currentColor" stroke-width="1.5" />
193
+ </svg>
194
+ </button>
195
+ </div>
196
+ </div>
197
+ <div class="install-card">
198
+ <div class="install-header">
199
+ <h3>Dev Dependency</h3>
200
+ </div>
201
+ <div class="code-block">
202
+ <code>npm install --save-dev @programinglive/commiter</code>
203
+ <button class="copy-btn" data-copy="npm install --save-dev @programinglive/commiter">
204
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none">
205
+ <rect x="7" y="7" width="10" height="10" rx="2" stroke="currentColor"
206
+ stroke-width="1.5" />
207
+ <path d="M3 13V5C3 3.89543 3.89543 3 5 3H13" stroke="currentColor" stroke-width="1.5" />
208
+ </svg>
209
+ </button>
210
+ </div>
211
+ </div>
212
+ <div class="install-card">
213
+ <div class="install-header">
214
+ <h3>No Installation (NPX)</h3>
215
+ </div>
216
+ <div class="code-block">
217
+ <code>npx @programinglive/commiter</code>
218
+ <button class="copy-btn" data-copy="npx @programinglive/commiter">
219
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none">
220
+ <rect x="7" y="7" width="10" height="10" rx="2" stroke="currentColor"
221
+ stroke-width="1.5" />
222
+ <path d="M3 13V5C3 3.89543 3.89543 3 5 3H13" stroke="currentColor" stroke-width="1.5" />
223
+ </svg>
224
+ </button>
225
+ </div>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </section>
230
+
231
+ <!-- Usage Section -->
232
+ <section id="usage" class="usage">
233
+ <div class="container">
234
+ <div class="section-header">
235
+ <h2 class="section-title">Simple <span class="gradient-text">Usage</span></h2>
236
+ <p class="section-subtitle">Three steps to automated releases</p>
237
+ </div>
238
+ <div class="usage-steps">
239
+ <div class="step-card">
240
+ <div class="step-number">1</div>
241
+ <div class="step-content">
242
+ <h3>Setup Your Project</h3>
243
+ <p>Run the setup command to configure Husky, commitlint, and release scripts</p>
244
+ <div class="code-block">
245
+ <code>npx @programinglive/commiter</code>
246
+ </div>
247
+ </div>
248
+ </div>
249
+ <div class="step-card">
250
+ <div class="step-number">2</div>
251
+ <div class="step-content">
252
+ <h3>Make Conventional Commits</h3>
253
+ <p>Use conventional commit format for all your commits</p>
254
+ <div class="code-block">
255
+ <code>git commit -m "feat(auth): add JWT authentication"</code>
256
+ </div>
257
+ <div class="commit-types">
258
+ <span class="commit-type">✨ feat</span>
259
+ <span class="commit-type">🐛 fix</span>
260
+ <span class="commit-type">📝 docs</span>
261
+ <span class="commit-type">♻️ refactor</span>
262
+ <span class="commit-type">⚡ perf</span>
263
+ <span class="commit-type">✅ test</span>
264
+ </div>
265
+ </div>
266
+ </div>
267
+ <div class="step-card">
268
+ <div class="step-number">3</div>
269
+ <div class="step-content">
270
+ <h3>Release Your Changes</h3>
271
+ <p>Run the appropriate release command based on your changes</p>
272
+ <div class="code-block">
273
+ <code>npm run release:patch # 1.0.0 → 1.0.1</code>
274
+ </div>
275
+ <div class="code-block">
276
+ <code>npm run release:minor # 1.0.0 → 1.1.0</code>
277
+ </div>
278
+ <div class="code-block">
279
+ <code>npm run release:major # 1.0.0 → 2.0.0</code>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </div>
284
+ </div>
285
+ </section>
286
+
287
+ <!-- Commit Types Reference -->
288
+ <section class="commit-reference">
289
+ <div class="container">
290
+ <div class="section-header">
291
+ <h2 class="section-title">Commit Types <span class="gradient-text">Reference</span></h2>
292
+ <p class="section-subtitle">All supported commit types with their icons and changelog sections</p>
293
+ </div>
294
+ <div class="reference-table">
295
+ <div class="table-header">
296
+ <div>Type</div>
297
+ <div>Icon</div>
298
+ <div>Description</div>
299
+ <div>Changelog Section</div>
300
+ </div>
301
+ <div class="table-row">
302
+ <div><code>feat</code></div>
303
+ <div>✨</div>
304
+ <div>New feature</div>
305
+ <div>✨ Features</div>
306
+ </div>
307
+ <div class="table-row">
308
+ <div><code>fix</code></div>
309
+ <div>🐛</div>
310
+ <div>Bug fix</div>
311
+ <div>🐛 Bug Fixes</div>
312
+ </div>
313
+ <div class="table-row">
314
+ <div><code>perf</code></div>
315
+ <div>⚡</div>
316
+ <div>Performance improvement</div>
317
+ <div>⚡ Performance</div>
318
+ </div>
319
+ <div class="table-row">
320
+ <div><code>refactor</code></div>
321
+ <div>♻️</div>
322
+ <div>Code refactoring</div>
323
+ <div>♻️ Refactors</div>
324
+ </div>
325
+ <div class="table-row">
326
+ <div><code>docs</code></div>
327
+ <div>📝</div>
328
+ <div>Documentation changes</div>
329
+ <div>📝 Documentation</div>
330
+ </div>
331
+ <div class="table-row">
332
+ <div><code>style</code></div>
333
+ <div>💄</div>
334
+ <div>Code style changes</div>
335
+ <div>💄 Styles</div>
336
+ </div>
337
+ <div class="table-row">
338
+ <div><code>test</code></div>
339
+ <div>✅</div>
340
+ <div>Test additions/changes</div>
341
+ <div>✅ Tests</div>
342
+ </div>
343
+ <div class="table-row">
344
+ <div><code>build</code></div>
345
+ <div>🏗️</div>
346
+ <div>Build system changes</div>
347
+ <div>🏗️ Build System</div>
348
+ </div>
349
+ <div class="table-row">
350
+ <div><code>ci</code></div>
351
+ <div>👷</div>
352
+ <div>CI/CD changes</div>
353
+ <div>👷 Continuous Integration</div>
354
+ </div>
355
+ <div class="table-row">
356
+ <div><code>chore</code></div>
357
+ <div>🧹</div>
358
+ <div>Maintenance tasks</div>
359
+ <div>🧹 Chores</div>
360
+ </div>
361
+ <div class="table-row">
362
+ <div><code>revert</code></div>
363
+ <div>⏪</div>
364
+ <div>Revert previous commit</div>
365
+ <div>⏪ Reverts</div>
366
+ </div>
367
+ </div>
368
+ </div>
369
+ </section>
370
+
371
+ <!-- Releases Section -->
372
+ <section id="releases" class="releases">
373
+ <div class="container">
374
+ <div class="section-header">
375
+ <h2 class="section-title">Recent <span class="gradient-text">Releases</span></h2>
376
+ <p class="section-subtitle">Latest updates and improvements</p>
377
+ </div>
378
+ <div class="releases-timeline">
379
+ <div class="release-item">
380
+ <div class="release-badge">Latest</div>
381
+ <div class="release-version">v1.1.9</div>
382
+ <div class="release-date">November 24, 2025</div>
383
+ <div class="release-type">🐛 Bug Fixes</div>
384
+ <p class="release-description">Convert release scripts to CJS to support ESM projects</p>
385
+ </div>
386
+ <div class="release-item">
387
+ <div class="release-version">v1.1.8</div>
388
+ <div class="release-date">November 22, 2025</div>
389
+ <div class="release-type">🐛 Bug Fixes</div>
390
+ <p class="release-description">Update installation script to copy missing files and update gitignore
391
+ </p>
392
+ </div>
393
+ <div class="release-item">
394
+ <div class="release-version">v1.1.7</div>
395
+ <div class="release-date">November 11, 2025</div>
396
+ <div class="release-type">📝 Documentation</div>
397
+ <p class="release-description">Recommend dev workflow MCP server for enhanced workflow automation
398
+ </p>
399
+ </div>
400
+ <div class="release-item">
401
+ <div class="release-version">v1.1.1</div>
402
+ <div class="release-date">November 5, 2025</div>
403
+ <div class="release-type">🐛 Bug Fixes</div>
404
+ <p class="release-description">Eliminated fs.F_OK deprecation warning from release runs</p>
405
+ </div>
406
+ <div class="release-item">
407
+ <div class="release-version">v1.0.12</div>
408
+ <div class="release-date">October 29, 2025</div>
409
+ <div class="release-type">✨ Features</div>
410
+ <p class="release-description">Autodetects project test command before releasing</p>
411
+ </div>
412
+ </div>
413
+ <div class="releases-cta">
414
+ <a href="https://github.com/programinglive/commiter/releases" target="_blank" class="btn btn-secondary">
415
+ View All Releases
416
+ </a>
417
+ </div>
418
+ </div>
419
+ </section>
420
+
421
+ <!-- CTA Section -->
422
+ <section class="cta">
423
+ <div class="container">
424
+ <div class="cta-content">
425
+ <h2>Ready to Automate Your Releases?</h2>
426
+ <p>Join developers who trust Commiter for professional release management</p>
427
+ <div class="cta-actions">
428
+ <a href="#installation" class="btn btn-primary">Get Started Now</a>
429
+ <a href="https://github.com/programinglive/commiter" target="_blank" class="btn btn-outline">
430
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="currentColor">
431
+ <path fill-rule="evenodd"
432
+ d="M10 0C4.477 0 0 4.477 0 10c0 4.42 2.865 8.17 6.839 9.49.5.092.682-.217.682-.482 0-.237-.008-.866-.013-1.7-2.782.603-3.369-1.34-3.369-1.34-.454-1.156-1.11-1.463-1.11-1.463-.908-.62.069-.608.069-.608 1.003.07 1.531 1.03 1.531 1.03.892 1.529 2.341 1.087 2.91.831.092-.646.35-1.086.636-1.336-2.22-.253-4.555-1.11-4.555-4.943 0-1.091.39-1.984 1.029-2.683-.103-.253-.446-1.27.098-2.647 0 0 .84-.269 2.75 1.025A9.578 9.578 0 0110 4.836c.85.004 1.705.114 2.504.336 1.909-1.294 2.747-1.025 2.747-1.025.546 1.377.203 2.394.1 2.647.64.699 1.028 1.592 1.028 2.683 0 3.842-2.339 4.687-4.566 4.935.359.309.678.919.678 1.852 0 1.336-.012 2.415-.012 2.743 0 .267.18.578.688.48C17.137 18.165 20 14.418 20 10c0-5.523-4.477-10-10-10z"
433
+ clip-rule="evenodd" />
434
+ </svg>
435
+ Star on GitHub
436
+ </a>
437
+ </div>
438
+ </div>
439
+ </div>
440
+ </section>
441
+
442
+ <!-- Footer -->
443
+ <footer class="footer">
444
+ <div class="container">
445
+ <div class="footer-content">
446
+ <div class="footer-brand">
447
+ <div class="logo">
448
+ <span class="logo-icon">🚀</span>
449
+ <span class="logo-text">Commiter</span>
450
+ </div>
451
+ <p>Automated commit conventions and release management for modern development teams.</p>
452
+ </div>
453
+ <div class="footer-links">
454
+ <div class="footer-column">
455
+ <h4>Product</h4>
456
+ <ul>
457
+ <li><a href="#features">Features</a></li>
458
+ <li><a href="#installation">Installation</a></li>
459
+ <li><a href="#usage">Usage</a></li>
460
+ <li><a href="#releases">Releases</a></li>
461
+ </ul>
462
+ </div>
463
+ <div class="footer-column">
464
+ <h4>Resources</h4>
465
+ <ul>
466
+ <li><a href="https://github.com/programinglive/commiter" target="_blank">GitHub</a></li>
467
+ <li><a href="https://www.npmjs.com/package/@programinglive/commiter" target="_blank">NPM
468
+ Package</a></li>
469
+ <li><a href="https://github.com/programinglive/commiter/issues" target="_blank">Issues</a>
470
+ </li>
471
+ <li><a href="https://www.conventionalcommits.org/" target="_blank">Conventional Commits</a>
472
+ </li>
473
+ </ul>
474
+ </div>
475
+ <div class="footer-column">
476
+ <h4>Community</h4>
477
+ <ul>
478
+ <li><a href="https://github.com/programinglive/commiter/blob/main/CONTRIBUTING.md"
479
+ target="_blank">Contributing</a></li>
480
+ <li><a href="https://github.com/programinglive/commiter/blob/main/CODE_OF_CONDUCT.md"
481
+ target="_blank">Code of Conduct</a></li>
482
+ <li><a href="https://github.com/programinglive/commiter/blob/main/LICENSE"
483
+ target="_blank">License</a></li>
484
+ </ul>
485
+ </div>
486
+ </div>
487
+ </div>
488
+ <div class="footer-bottom">
489
+ <p>&copy; 2025 Programming Live. Released under the MIT License.</p>
490
+ <div class="footer-badges">
491
+ <img src="https://img.shields.io/npm/v/%40programinglive%2Fcommiter.svg" alt="npm version">
492
+ <img src="https://img.shields.io/npm/dm/%40programinglive%2Fcommiter.svg" alt="npm downloads">
493
+ <img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="MIT License">
494
+ </div>
495
+ </div>
496
+ </div>
497
+ </footer>
498
+
499
+ <script src="js/script.js"></script>
500
+ </body>
501
+
502
+ </html>