@programinglive/commiter 1.2.5 โ†’ 1.2.6

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,13 @@
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.6](https://github.com/programinglive/commiter/compare/v1.2.5...v1.2.6) (2025-11-30)
6
+
7
+
8
+ ### ๐Ÿ› Bug Fixes
9
+
10
+ * tests only run during release, not on commit ([15600a0](https://github.com/programinglive/commiter/commit/15600a0a558ea9fd38a77afd2c11f5e954d87c51))
11
+
5
12
  ### [1.2.5](https://github.com/programinglive/commiter/compare/v1.2.4...v1.2.5) (2025-11-29)
6
13
 
7
14
 
package/README.md CHANGED
@@ -126,12 +126,12 @@ npm run release
126
126
 
127
127
  ## What Happens During Release?
128
128
 
129
- 1. ๐Ÿงช Detects your package manager and runs the `test` script automatically
130
- 2. ๐Ÿ“Š Analyzes commits since last release
131
- 3. ๐Ÿ”ข Bumps version in `package.json`
132
- 4. ๐Ÿ“ Updates `CHANGELOG.md` with icons
133
- 5. ๐Ÿท๏ธ Creates a git tag
134
- 6. ๐Ÿ’พ Commits changes with format: `chore(release): v1.2.3 ๐Ÿš€`
129
+ 1. ๐Ÿงช **Runs tests** - Detects your package manager and runs the `test` script automatically (tests only run during release, not on commit)
130
+ 2. ๐Ÿ“Š **Analyzes commits** - Examines commits since last release
131
+ 3. ๐Ÿ”ข **Bumps version** - Updates version in `package.json`
132
+ 4. ๐Ÿ“ **Updates changelog** - Generates `CHANGELOG.md` with icons
133
+ 5. ๐Ÿท๏ธ **Creates tag** - Creates a git tag for the release
134
+ 6. ๐Ÿ’พ **Commits release** - Commits changes with format: `chore(release): v1.2.3 ๐Ÿš€`
135
135
 
136
136
  ## Push Your Release
137
137
 
@@ -146,7 +146,7 @@ git push --follow-tags origin main
146
146
  The following hooks are automatically enforced:
147
147
 
148
148
  - **commit-msg**: Validates commit message format using commitlint
149
- - **pre-commit**: Runs tests before allowing commits
149
+ - **pre-commit**: Empty hook (tests are run only during release, not on commit)
150
150
 
151
151
  ## Configuration Files
152
152
 
@@ -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.6 | 2025-11-30 | tests only run during release, not on commit (15600a0) |
7
8
  | 1.2.5 | 2025-11-29 | **release:** v1.2.4 ๐Ÿš€ (23e546a) |
8
9
  | 1.2.4 | 2025-11-27 | **release:** 1.2.3 (9d12f7e) |
9
10
  | 1.2.3 | 2025-11-27 | automate website releases timeline updates from release notes (5abf788) |
@@ -52,6 +53,13 @@ This document summarizes every published version of `@programinglive/commiter`.
52
53
 
53
54
 
54
55
 
56
+
57
+ ## 1.2.6 โ€“ ๐Ÿ› Bug Fixes
58
+
59
+ Released on **2025-11-30**.
60
+
61
+ - tests only run during release, not on commit (15600a0)
62
+
55
63
  ## 1.2.5 โ€“ ๐Ÿงน Chores
56
64
 
57
65
  Released on **2025-11-29**.
package/index.js CHANGED
@@ -153,6 +153,13 @@ npx --no -- commitlint --edit "$1"
153
153
  fs.writeFileSync(path.join(huskyDir, 'commit-msg'), commitMsgHook);
154
154
  fs.chmodSync(path.join(huskyDir, 'commit-msg'), 0o755);
155
155
 
156
+ // Create pre-commit hook (tests run only during release)
157
+ const preCommitHook = `#!/usr/bin/env sh
158
+ # Pre-commit hook - tests are run only during release
159
+ `;
160
+ fs.writeFileSync(path.join(huskyDir, 'pre-commit'), preCommitHook);
161
+ fs.chmodSync(path.join(huskyDir, 'pre-commit'), 0o755);
162
+
156
163
  // Update .gitignore
157
164
  const gitignorePath = path.join(process.cwd(), '.gitignore');
158
165
  let gitignoreContent = '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@programinglive/commiter",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
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/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.5 - Latest Release</span>
69
+ <span>v1.2.6 - 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.5</div>
93
+ <div class="stat-value">1.2.6</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.6</div>
389
+ <div class="release-date">November 30, 2025</div>
390
+ <div class="release-type">๐Ÿ› Bug Fixes</div>
391
+ <p class="release-description">tests only run during release, not on commit (15600a0)</p>
392
+ </div>
393
+ <div class="release-item">
388
394
  <div class="release-version">v1.2.5</div>
389
395
  <div class="release-date">November 29, 2025</div>
390
396
  <div class="release-type">๐Ÿงน Chores</div>
@@ -408,12 +414,6 @@
408
414
  <div class="release-type">๐Ÿงน Chores</div>
409
415
  <p class="release-description">update homepage url (556b173)</p>
410
416
  </div>
411
- <div class="release-item">
412
- <div class="release-version">v1.2.1</div>
413
- <div class="release-date">November 26, 2025</div>
414
- <div class="release-type">๐Ÿ› Bug Fixes</div>
415
- <p class="release-description">release: improve website version update reliability (18f5ace)</p>
416
- </div>
417
417
  <!-- RELEASES_TIMELINE:END -->
418
418
  </div>
419
419
  <div class="releases-cta">