Skip to content

Commit

Permalink
fix: trigger release, test new config
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Gordon committed May 1, 2024
1 parent 1e6b7e6 commit bf1c0ea
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 29 deletions.
6 changes: 0 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"main": "./dist/main.js",
"module": "./dist/main.js",
"typings": "./dist/main.d.ts",
"type": "module",
"files": [
"dist",
"app-router"
Expand Down Expand Up @@ -51,11 +50,6 @@
"peerDependencies": {
"next": "^14.2.2"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
Expand Down
24 changes: 24 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = {
branches: [
'main',
{
name: 'next',
prerelease: true,
},
],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/changelog',
'@semantic-release/npm',
[
'@semantic-release/git',
{
assets: ['package.json', 'package-lock.json', 'CHANGELOG.md'],
message:
'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
'@semantic-release/github',
],
};
23 changes: 0 additions & 23 deletions release.config.json

This file was deleted.

0 comments on commit bf1c0ea

Please sign in to comment.