diff --git a/repo-scripts/release.ts b/repo-scripts/release.ts index 015e949..9a616de 100644 --- a/repo-scripts/release.ts +++ b/repo-scripts/release.ts @@ -19,61 +19,10 @@ try { // Plugin options githubUrl: 'https://my-ghe.com', githubApiPathPrefix: '/api-prefix', */ - publish: false, plugins: [ - [ - '@semantic-release/commit-analyzer', - { - preset: 'conventionalcommits', - releaseRules: [ - { - type: 'build', - scope: 'deps', - release: 'patch', - }, - ], - }, - ], - [ - '@semantic-release/release-notes-generator', - { - preset: 'conventionalcommits', - presetConfig: { - types: [ - { - type: 'feat', - section: 'Features', - }, - { - type: 'fix', - section: 'Bug Fixes', - }, - { - type: 'build', - section: 'Dependencies and Other Build Updates', - hidden: false, - }, - ], - }, - }, - ], + '@semantic-release/commit-analyzer', + '@semantic-release/release-notes-generator', '@semantic-release/npm', - [ - '@semantic-release/github', - { - publish: false, - // successComment: - // ":tada: This ${issue.pull_request ? 'pull request' : 'issue'} is included in version ${nextRelease.version}", - }, - ] /*, - [ - '@semantic-release/git', - { - assets: ['package.json', 'package-lock.json'], - message: - 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}', - }, - ], */, ], } /* {