-
Notifications
You must be signed in to change notification settings - Fork 9
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
Register Bower Package Without Separate Repo #33
Comments
The whole idea behind this project is for those who needs exactly a separate bower repo 😄 If you don't need a separate repo for bower then you just don't need this "scripts": {
"release": "npm run test && npm run build && npm publish",
"test": "...",
"build": "..."
You've got the idea. This project was created as a result of refactoring at React-Bootstrap project when it was decided to Therefore it seems that these additions would be at least questionable and "downgrading" to this project. |
However, that example wouldn't handle version bumping. I suppose I could use npm-version for that, but I would end up with 3 boilerplate scripts (
I still need to run
I do not think it would be "downgrading" as long as this feature is implemented in a way that does not change existing functionality. A possible solution is described above. Most libraries that I have seen use the same repository for NPM and Bower, so I think many people could potentially benefit from this feature. |
I apologize for taking so long to answer (busy days) 😊 It will take more than a week for me to do it. Or you could just wait for a couple of weeks o/c 🍒 |
@mjhasbach what do you think about https://github.com/mzabriskie/rf-release for this case ? |
That package updates the deprecated version property in |
… repository. Closes AlexKVal#33
release-script
has support for Bower, but it involves having a separate Bower repo..npmignore
andbower.json
'signore
to include the appropriate files based on the package managerrelease major --run
to release the package on GitHub / NPM andbower register
to release the package on BowerUpon running
release
, it would be cool ifrelease-script
:bower.json
bower register
ed the package unless...package.json
'srelease-script.bowerRepo
existsThe text was updated successfully, but these errors were encountered: