-
Notifications
You must be signed in to change notification settings - Fork 1
/
release.config.cjs
19 lines (17 loc) · 953 Bytes
/
release.config.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const commitAnalyzer = require("@html-validate/semantic-release-config/lib/commit-analyzer");
const releaseNotesGenerator = require("@html-validate/semantic-release-config/lib/release-notes-generator");
const npm = require("@html-validate/semantic-release-config/lib/npm");
const changelog = require("@html-validate/semantic-release-config/lib/changelog");
const exec = require("@html-validate/semantic-release-config/lib/exec");
const git = require("@html-validate/semantic-release-config/lib/git");
const branches = require("@html-validate/semantic-release-config/lib/branches");
const plugins = [
["@semantic-release/commit-analyzer", commitAnalyzer],
["@semantic-release/release-notes-generator", releaseNotesGenerator],
["@semantic-release/npm", npm],
["@semantic-release/github", {}],
["@semantic-release/changelog", changelog],
["@semantic-release/exec", exec],
["@semantic-release/git", git],
];
module.exports = { branches, plugins };