Skip to content

Commit

Permalink
ci(release): use alternative npm plugin to work around throttling issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauNeko committed Dec 17, 2024
1 parent c8d0d4f commit f482dbe
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .lintstagedrc.cjs → .lintstagedrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
export default {
'*.md': 'prettier --list-different',
};
29 changes: 29 additions & 0 deletions .releaserc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
export default {
branches: [
'master',
{
name: 'beta',
prerelease: true,
},
{
name: 'eslint-9',
prerelease: true,
},
],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/changelog',
'@semrel-extra/npm',
'@semantic-release/github',
'@semantic-release/git',
[
'semantic-release-slack-bot',
{
notifyOnFail: false,
notifyOnSuccess: true,
slackWebhook: process.env.SEMANTIC_RELEASE_SLACK_WEBHOOK,
},
],
],
};
14 changes: 0 additions & 14 deletions .releaserc.json

This file was deleted.

File renamed without changes.
8 changes: 8 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "eslint-kuzzle",
"version": "1.0.0-eslint-9.1",
"private": true,
"type": "module",
"homepage": "https://github.com/kuzzleio/eslint-plugin-kuzzle",
"workspaces": [
"packages/*"
Expand All @@ -19,6 +20,7 @@
"@eslint/js": "^9.17.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semrel-extra/npm": "^1.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-plugin-eslint-plugin": "^6.3.2",
Expand Down

0 comments on commit f482dbe

Please sign in to comment.