We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8bc0860 + 1993fc9 commit fcac7a3Copy full SHA for fcac7a3
2 files changed
packages/module/package.json
@@ -27,11 +27,9 @@
27
"url": "https://github.com/patternfly/extended-components/issues"
28
},
29
"homepage": "https://github.com/patternfly/extended-components#readme",
30
- "release": {
31
- "branches": "main"
32
- },
33
"publishConfig": {
34
- "access": "public"
+ "access": "public",
+ "tag": "prerelease"
35
36
"dependencies": {
37
"@patternfly/react-core": "^4.250.1"
packages/module/release.config.js
@@ -0,0 +1,13 @@
1
+module.exports = {
2
+ branches: [
3
+ 'main',
4
+ { name: 'main', channel: 'prerelease' }
5
+ ],
6
+ plugins: [
7
+ '@semantic-release/commit-analyzer',
8
+ '@semantic-release/release-notes-generator',
9
+ '@semantic-release/npm',
10
+ '@semantic-release/github'
11
12
+ tagFormat: 'prerelease-v${version}',
13
+ };
0 commit comments