Skip to content

Commit

Permalink
fix(core): packages not published by last CI run
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentEnder committed Apr 26, 2021
1 parent b6c9035 commit d07b9f3
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions .releaserc.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,41 @@
module.exports = {
branches: ['master', { name: 'dev', prerelease: true }],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/commit-analyzer',
{
preset: 'angular',
releaseRules: [
{ type: 'docs', release: false },
{ type: 'test', release: false },
{ scope: 'ci', release: false },
{ scope: 'repo', release: false },
{ type: 'release', release: false },
],
},
],
[
'@semantic-release/release-notes-generator',
{
presetConfig: {
types: [
{ type: 'feat', hidden: false },
{ type: 'fix', hidden: false },
{ type: 'chore', hidden: true },
{ type: 'docs', hidden: true },
{ type: 'style', hidden: true },
{ type: 'refactor', hidden: true },
{ type: 'test', hidden: true },
{ type: 'release', hidden: true },
],
},
},
],
'@semantic-release/changelog',
[
'@semantic-release/exec',
{
publish: [
publishCmd: [
'yarn ts-node tools/scripts/publish-all ${nextRelease.version} ${nextRelease.channel}',
],
},
Expand Down

0 comments on commit d07b9f3

Please sign in to comment.