powmedia / backbone-forms

Form framework for BackboneJS with nested forms, editable lists and validation
MIT License
2.17k stars 415 forks source link

Taged version is not updated #508

Closed thayashi closed 7 years ago

thayashi commented 8 years ago

Taged version is not updated to the latest one, why it keeps as old one?

glenpike commented 8 years ago

Is this when you use bower install?

If so, you can workaround this by installing a specific commit if you want a more recent version - see bower install

For example, if you want to install the most recent commit (from the other day), use this:

bower install backbone-forms#fa1628160b172038c1687bf80decb699fe80e113

You can also use:

bower install backbone-forms#master

Which will pull the latest commit, but if you save this to your bower.json config, everytime you run bower install you risk pulling a different version.

We do need to update and tag a release at some point, but need to discuss milestones with the other developers.

thayashi commented 8 years ago

Thank you for your comments, I got it. I'm using npm install, how do I install the latest with npm command?

glenpike commented 8 years ago

Hi,

You can install from a tag / commit and a repository with npm install - with caveats - you won't get the "distribution" build and to be fair, I've never tried it with require... - we need to build those and they're currently out of date - speaking to @exussum12 about this.

npm install git+https://github.com/powmedia/backbone-forms.git#fa16281

(From http://stackoverflow.com/questions/14187956/npm-install-from-git-in-a-specific-version/18049685#18049685)

Thanks for your patience.

thayashi commented 7 years ago

cool, thanks