@programinglive/commiter 1.2.3 โ†’ 1.2.5

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/CHANGELOG.md CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.2.5](https://github.com/programinglive/commiter/compare/v1.2.4...v1.2.5) (2025-11-29)
6
+
7
+
8
+ ### ๐Ÿงน Chores
9
+
10
+ * **release:** v1.2.4 ๐Ÿš€ ([23e546a](https://github.com/programinglive/commiter/commit/23e546a070ef4ddc403f7d3a89750c501ec84f08))
11
+
12
+
13
+ ### โœ… Tests
14
+
15
+ * add integration tests to verify web updates are only for commiter ([8b2b1ad](https://github.com/programinglive/commiter/commit/8b2b1ad045f088db03d9ccfea4dad54cb5278926))
16
+
17
+ ### [1.2.4](https://github.com/programinglive/commiter/compare/v1.2.3...v1.2.4) (2025-11-27)
18
+
19
+
20
+ ### ๐Ÿงน Chores
21
+
22
+ * **release:** 1.2.3 ([9d12f7e](https://github.com/programinglive/commiter/commit/9d12f7e7f9ec5d64b4f7a6d30a4c046e760d73bb))
23
+
24
+
25
+ ### ๐Ÿ› Bug Fixes
26
+
27
+ * **web:** improve terminal layout and animation ([6d196f4](https://github.com/programinglive/commiter/commit/6d196f4f922e72ad32e9cb570046ff7bf82c398e))
28
+
5
29
  ### [1.2.3](https://github.com/programinglive/commiter/compare/v1.2.2...v1.2.3) (2025-11-27)
6
30
 
7
31
 
@@ -4,6 +4,8 @@ This document summarizes every published version of `@programinglive/commiter`.
4
4
 
5
5
  | Version | Date | Highlights |
6
6
  |---------|------|------------|
7
+ | 1.2.5 | 2025-11-29 | **release:** v1.2.4 ๐Ÿš€ (23e546a) |
8
+ | 1.2.4 | 2025-11-27 | **release:** 1.2.3 (9d12f7e) |
7
9
  | 1.2.3 | 2025-11-27 | automate website releases timeline updates from release notes (5abf788) |
8
10
  | 1.2.2 | 2025-11-27 | update homepage url (556b173) |
9
11
  | 1.2.1 | 2025-11-26 | **release:** improve website version update reliability (18f5ace) |
@@ -48,6 +50,22 @@ This document summarizes every published version of `@programinglive/commiter`.
48
50
 
49
51
 
50
52
 
53
+
54
+
55
+ ## 1.2.5 โ€“ ๐Ÿงน Chores
56
+
57
+ Released on **2025-11-29**.
58
+
59
+ - **release:** v1.2.4 ๐Ÿš€ (23e546a)
60
+ - add integration tests to verify web updates are only for commiter (8b2b1ad)
61
+
62
+ ## 1.2.4 โ€“ ๐Ÿงน Chores
63
+
64
+ Released on **2025-11-27**.
65
+
66
+ - **release:** 1.2.3 (9d12f7e)
67
+ - **web:** improve terminal layout and animation (6d196f4)
68
+
51
69
  ## 1.2.3 โ€“ โœจ Features
52
70
 
53
71
  Released on **2025-11-27**.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@programinglive/commiter",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "Commiter keeps repositories release-ready by enforcing conventional commits, generating icon-rich changelog entries, and orchestrating semantic version bumps without manual toil. It bootstraps Husky hooks, commitlint rules, and release scripts that inspect history, detect framework-specific test commands, run them automatically, tag git releases, coordinate npm publishing, surface release metrics, enforce project-specific checks, and give maintainers observability across distributed teams. Plus!",
5
5
  "main": "index.js",
6
6
  "bin": {
package/web/css/style.css CHANGED
@@ -163,7 +163,14 @@ body {
163
163
  .hero {
164
164
  padding: calc(var(--spacing-3xl) + 60px) 0 var(--spacing-3xl);
165
165
  position: relative;
166
- overflow: hidden;
166
+ overflow: visible;
167
+ }
168
+
169
+ .hero .container {
170
+ display: grid;
171
+ grid-template-columns: 1fr 1fr;
172
+ gap: var(--spacing-3xl);
173
+ align-items: center;
167
174
  }
168
175
 
169
176
  .hero::before {
@@ -277,22 +284,19 @@ body {
277
284
 
278
285
  /* Hero Visual */
279
286
  .hero-visual {
280
- position: absolute;
281
- right: -100px;
282
- top: 50%;
283
- transform: translateY(-50%);
284
- width: 600px;
287
+ position: relative;
288
+ width: 100%;
285
289
  animation: fadeInRight 0.8s ease-out 0.5s both;
286
290
  }
287
291
 
288
292
  @keyframes fadeInRight {
289
293
  from {
290
294
  opacity: 0;
291
- transform: translateY(-50%) translateX(40px);
295
+ transform: translateX(40px);
292
296
  }
293
297
  to {
294
298
  opacity: 1;
295
- transform: translateY(-50%) translateX(0);
299
+ transform: translateX(0);
296
300
  }
297
301
  }
298
302
 
@@ -338,6 +342,9 @@ body {
338
342
  padding: var(--spacing-md);
339
343
  font-family: 'Courier New', monospace;
340
344
  font-size: 0.875rem;
345
+ max-height: none;
346
+ overflow-y: auto;
347
+ min-height: auto;
341
348
  }
342
349
 
343
350
  .code-line {
@@ -870,8 +877,13 @@ body {
870
877
  Responsive Design
871
878
  =========================== */
872
879
  @media (max-width: 1024px) {
880
+ .hero .container {
881
+ grid-template-columns: 1fr;
882
+ }
883
+
873
884
  .hero-visual {
874
- display: none;
885
+ display: block;
886
+ margin-top: var(--spacing-2xl);
875
887
  }
876
888
 
877
889
  .hero-content {
package/web/index.html CHANGED
@@ -66,7 +66,7 @@
66
66
  <div class="hero-content">
67
67
  <div class="hero-badge">
68
68
  <span class="badge-dot"></span>
69
- <span>v1.2.3 - Latest Release</span>
69
+ <span>v1.2.5 - Latest Release</span>
70
70
  </div>
71
71
  <h1 class="hero-title">
72
72
  Ship Releases with <span class="gradient-text">Confidence</span>
@@ -90,7 +90,7 @@
90
90
  </div>
91
91
  <div class="hero-stats">
92
92
  <div class="stat-item">
93
- <div class="stat-value">1.2.3</div>
93
+ <div class="stat-value">1.2.5</div>
94
94
  <div class="stat-label">Latest Version</div>
95
95
  </div>
96
96
  <div class="stat-item">
@@ -385,6 +385,18 @@
385
385
  <!-- RELEASES_TIMELINE:START -->
386
386
  <div class="release-item">
387
387
  <div class="release-badge">Latest</div>
388
+ <div class="release-version">v1.2.5</div>
389
+ <div class="release-date">November 29, 2025</div>
390
+ <div class="release-type">๐Ÿงน Chores</div>
391
+ <p class="release-description">release: v1.2.4 ๐Ÿš€ (23e546a)</p>
392
+ </div>
393
+ <div class="release-item">
394
+ <div class="release-version">v1.2.4</div>
395
+ <div class="release-date">November 27, 2025</div>
396
+ <div class="release-type">๐Ÿงน Chores</div>
397
+ <p class="release-description">release: 1.2.3 (9d12f7e)</p>
398
+ </div>
399
+ <div class="release-item">
388
400
  <div class="release-version">v1.2.3</div>
389
401
  <div class="release-date">November 27, 2025</div>
390
402
  <div class="release-type">โœจ Features</div>
@@ -402,17 +414,6 @@
402
414
  <div class="release-type">๐Ÿ› Bug Fixes</div>
403
415
  <p class="release-description">release: improve website version update reliability (18f5ace)</p>
404
416
  </div>
405
- <div class="release-item">
406
- <div class="release-version">v1.2.0</div>
407
- <div class="release-date">November 26, 2025</div>
408
- <p class="release-description">See CHANGELOG for details.</p>
409
- </div>
410
- <div class="release-item">
411
- <div class="release-version">v1.1.11</div>
412
- <div class="release-date">November 26, 2025</div>
413
- <div class="release-type">๐Ÿ“ Documentation</div>
414
- <p class="release-description">website: add open graph social media preview (7a2f911)</p>
415
- </div>
416
417
  <!-- RELEASES_TIMELINE:END -->
417
418
  </div>
418
419
  <div class="releases-cta">
package/web/js/script.js CHANGED
@@ -147,14 +147,36 @@ window.addEventListener('scroll', () => {
147
147
  // ===========================
148
148
  // Terminal Animation
149
149
  // ===========================
150
- const codeLines = document.querySelectorAll('.code-line');
151
- let delay = 0;
150
+ function animateTerminal() {
151
+ const codeLines = document.querySelectorAll('.code-line');
152
+ let delay = 0;
152
153
 
153
- codeLines.forEach((line, index) => {
154
- line.style.opacity = '0';
155
- line.style.animation = `fadeIn 0.5s ease-out ${delay}s forwards`;
156
- delay += 0.3;
157
- });
154
+ codeLines.forEach((line, index) => {
155
+ line.style.opacity = '0';
156
+ line.style.animation = 'none';
157
+ // Trigger reflow to restart animation
158
+ void line.offsetWidth;
159
+ line.style.animation = `fadeIn 0.5s ease-out ${delay}s forwards`;
160
+ delay += 0.3;
161
+ });
162
+ }
163
+
164
+ // Initial animation on page load
165
+ animateTerminal();
166
+
167
+ // Replay animation when scrolling back to the terminal
168
+ const codeWindow = document.querySelector('.code-window');
169
+ if (codeWindow) {
170
+ const terminalObserver = new IntersectionObserver((entries) => {
171
+ entries.forEach(entry => {
172
+ if (entry.isIntersecting) {
173
+ animateTerminal();
174
+ }
175
+ });
176
+ }, { threshold: 0.5 });
177
+
178
+ terminalObserver.observe(codeWindow);
179
+ }
158
180
 
159
181
  // Add fadeIn keyframe animation
160
182
  const style = document.createElement('style');