@programinglive/commiter 1.2.3 โ 1.2.4
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 +12 -0
- package/docs/release-notes/RELEASE_NOTES.md +9 -0
- package/package.json +1 -1
- package/web/css/style.css +21 -9
- package/web/index.html +8 -8
- package/web/js/script.js +29 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
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.4](https://github.com/programinglive/commiter/compare/v1.2.3...v1.2.4) (2025-11-27)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ๐งน Chores
|
|
9
|
+
|
|
10
|
+
* **release:** 1.2.3 ([9d12f7e](https://github.com/programinglive/commiter/commit/9d12f7e7f9ec5d64b4f7a6d30a4c046e760d73bb))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### ๐ Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **web:** improve terminal layout and animation ([6d196f4](https://github.com/programinglive/commiter/commit/6d196f4f922e72ad32e9cb570046ff7bf82c398e))
|
|
16
|
+
|
|
5
17
|
### [1.2.3](https://github.com/programinglive/commiter/compare/v1.2.2...v1.2.3) (2025-11-27)
|
|
6
18
|
|
|
7
19
|
|
|
@@ -4,6 +4,7 @@ This document summarizes every published version of `@programinglive/commiter`.
|
|
|
4
4
|
|
|
5
5
|
| Version | Date | Highlights |
|
|
6
6
|
|---------|------|------------|
|
|
7
|
+
| 1.2.4 | 2025-11-27 | **release:** 1.2.3 (9d12f7e) |
|
|
7
8
|
| 1.2.3 | 2025-11-27 | automate website releases timeline updates from release notes (5abf788) |
|
|
8
9
|
| 1.2.2 | 2025-11-27 | update homepage url (556b173) |
|
|
9
10
|
| 1.2.1 | 2025-11-26 | **release:** improve website version update reliability (18f5ace) |
|
|
@@ -48,6 +49,14 @@ This document summarizes every published version of `@programinglive/commiter`.
|
|
|
48
49
|
|
|
49
50
|
|
|
50
51
|
|
|
52
|
+
|
|
53
|
+
## 1.2.4 โ ๐งน Chores
|
|
54
|
+
|
|
55
|
+
Released on **2025-11-27**.
|
|
56
|
+
|
|
57
|
+
- **release:** 1.2.3 (9d12f7e)
|
|
58
|
+
- **web:** improve terminal layout and animation (6d196f4)
|
|
59
|
+
|
|
51
60
|
## 1.2.3 โ โจ Features
|
|
52
61
|
|
|
53
62
|
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
|
+
"version": "1.2.4",
|
|
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:
|
|
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:
|
|
281
|
-
|
|
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:
|
|
295
|
+
transform: translateX(40px);
|
|
292
296
|
}
|
|
293
297
|
to {
|
|
294
298
|
opacity: 1;
|
|
295
|
-
transform:
|
|
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:
|
|
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.
|
|
69
|
+
<span>v1.2.4 - 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.
|
|
93
|
+
<div class="stat-value">1.2.4</div>
|
|
94
94
|
<div class="stat-label">Latest Version</div>
|
|
95
95
|
</div>
|
|
96
96
|
<div class="stat-item">
|
|
@@ -385,6 +385,12 @@
|
|
|
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.4</div>
|
|
389
|
+
<div class="release-date">November 27, 2025</div>
|
|
390
|
+
<div class="release-type">๐งน Chores</div>
|
|
391
|
+
<p class="release-description">release: 1.2.3 (9d12f7e)</p>
|
|
392
|
+
</div>
|
|
393
|
+
<div class="release-item">
|
|
388
394
|
<div class="release-version">v1.2.3</div>
|
|
389
395
|
<div class="release-date">November 27, 2025</div>
|
|
390
396
|
<div class="release-type">โจ Features</div>
|
|
@@ -407,12 +413,6 @@
|
|
|
407
413
|
<div class="release-date">November 26, 2025</div>
|
|
408
414
|
<p class="release-description">See CHANGELOG for details.</p>
|
|
409
415
|
</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
416
|
<!-- RELEASES_TIMELINE:END -->
|
|
417
417
|
</div>
|
|
418
418
|
<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
|
-
|
|
151
|
-
|
|
150
|
+
function animateTerminal() {
|
|
151
|
+
const codeLines = document.querySelectorAll('.code-line');
|
|
152
|
+
let delay = 0;
|
|
152
153
|
|
|
153
|
-
codeLines.forEach((line, index) => {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
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');
|