-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Allows publishing npm versions from feature branches #186
Changes from 4 commits
44a2ae4
74f00f5
eb32f58
514f484
100f4c1
c0f25ce
10c4f63
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
module.exports = { | ||
branches: ['main', { name: 'dev', channel: 'dev', prerelease: 'dev' }], | ||
branches: ['main', { | ||
name: 'feature/*', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should this be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes!! thanks for the sharp eye as always! I'm keeping the channel name as feature though since it's only how it will appear in npm. |
||
channel: 'feature', | ||
prerelease: "${name.split('/').slice(1).join('-').toLowerCase()}" | ||
}], | ||
tagFormat: 'v${version}', | ||
repositoryUrl: 'https://github.com/mParticle/aquarium', | ||
plugins: [ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will be updated as soon as we release a new version from main, but it makes me wonder if this should go into main? Probably not.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It actually makes sense. The newest version we will have once this reaches main is this one. And once we release a new one from main, that's gonna be updated. All good I think.