We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef0804e commit 6c32767Copy full SHA for 6c32767
2 files changed
packages/module/package.json
@@ -31,7 +31,9 @@
31
"branches": "main"
32
},
33
"publishConfig": {
34
- "access": "public"
+ "access": "public",
35
+ "registry": "https://registry.npmjs.org/",
36
+ "tag": "prerelease"
37
38
"dependencies": {
39
"@patternfly/react-core": "^4.250.1"
packages/module/realease.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