forked from zowe/zowe-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.config.js
34 lines (34 loc) · 977 Bytes
/
release.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module.exports = {
branches: [
{
name: "master",
level: "minor",
dependencies: ["@zowe/perf-timing", "@zowe/imperative"]
},
{
name: "zowe-v?-lts",
level: "patch",
dependencies: ["@zowe/perf-timing", "@zowe/imperative"]
}
// {
// name: "next",
// prerelease: true,
// dependencies: { "@zowe/perf-timing": "latest", "@zowe/imperative": "next" }
// }
],
plugins: [
"@octorelease/changelog",
["@octorelease/lerna", {
aliasTags: {
// Note: Remove "next" tag here when the "next" branch is uncommented above
"latest": ["zowe-v2-lts", "next"]
},
pruneShrinkwrap: ["@zowe/cli"],
smokeTest: true
}],
["@octorelease/github", {
checkPrLabels: true
}],
"@octorelease/git"
]
};