Skip to content

Commit 5de7e05

Browse files
committed
chore: add semantic release configuration for mocks package
1 parent 83b771b commit 5de7e05

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

packages/mocks/.releaserc

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"branches": [
3+
{
4+
"name": "main",
5+
"channel": "latest",
6+
"prerelease": false
7+
},
8+
{
9+
"name": "beta",
10+
"prerelease": true
11+
}
12+
],
13+
"plugins": [
14+
"@semantic-release/commit-analyzer",
15+
"@semantic-release/release-notes-generator",
16+
[
17+
"@semantic-release/changelog",
18+
{
19+
"changelogFile": "CHANGELOG.md",
20+
"changelogTitle": "# Project Changelog"
21+
}
22+
],
23+
[
24+
"@semantic-release/npm",
25+
{
26+
"npmPublish": false
27+
}
28+
],
29+
[
30+
"@semantic-release/git",
31+
{
32+
"assets": [
33+
"CHANGELOG.md",
34+
"CHANGELOG_PROJECT.md",
35+
"package.json",
36+
"package-lock.json",
37+
"npm-shrinkwrap.json"
38+
]
39+
}
40+
],
41+
[
42+
"@semantic-release/github"
43+
]
44+
],
45+
"extends": "semantic-release-monorepo"
46+
}

0 commit comments

Comments
 (0)