Skip to content

Commit b02d23a

Browse files
cmaurerclaude
andauthored
fix: updating releaserc (#32)
* feat: add semantic-release for automated versioning and publishing - Add semantic-release with changelog and git plugins - Configure releases on master (full) and feature/* branches (prerelease) - Update GitHub Actions to run semantic-release after successful builds - Remove unused blanket.js coverage tool (replaced by nyc) - Update Gruntfile to remove blanket dependency Semantic-release will: - Analyze commits to determine version bump - Update package.json with new version - Generate/update CHANGELOG.md - Create GitHub release with release notes - Publish to npm 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix: - adding test for invalid regex - removing unused files * fix: updating * feat(ci): add separate prerelease stage for non-master branches - Split release job into 'release' (master only) and 'prerelease' (all other branches) - Update .releaserc.json to support any branch as prerelease with wildcard pattern - Prerelease versions use branch name as identifier (e.g., 1.2.0-feature-foo.1) - Prereleases published to 'next' npm channel 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix: updating * fix: updating * feat(ci): add pre-release stage for feature branches - Add pre-release job that runs on feature/* branches (not master) - Update .releaserc.json to specifically match feature/* branches - Prereleases strip 'feature/' prefix from version identifier - Example: feature/foo creates 1.2.0-foo.1 on 'next' npm channel 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix: updating * fix: updating * fix: updating * fix: updating releaserc --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 81d9fbf commit b02d23a

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.releaserc.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,16 @@
1010
"plugins": [
1111
"@semantic-release/commit-analyzer",
1212
"@semantic-release/release-notes-generator",
13-
[
14-
"@semantic-release/changelog",
15-
{
16-
"changelogFile": "CHANGELOG.md"
17-
},
18-
"@semantic-release/github",
13+
["@semantic-release/changelog",
14+
{
15+
"changelogFile": "CHANGELOG.md"
16+
}],
17+
["@semantic-release/github",
1918
{
2019
"assets": [
2120
{ "path": "src/relative.time.parser.js", "label": "JS distribution" }
2221
]
23-
}
24-
],
22+
}],
2523
[
2624
"@semantic-release/npm",
2725
{

0 commit comments

Comments
 (0)