cybertk / ramlev

Validate/Verify examples in RAML
Other
30 stars 5 forks source link

release new ramlev version #23

Closed arnelandwehr closed 9 years ago

arnelandwehr commented 9 years ago

Hi,

working together with @andrenpaes on the same project, where we would like to use ramlev. Actually we need a version that includes his latest accepted PR.

Tried to reference this repo as snapshot in our package.json (i am not really an node/npm expert ;)) but due to the .npmignore file it doesn't include the sources.

Could you release a new version or give me a hint how i easily could reference a snapshot version?

Thx!

cybertk commented 9 years ago

You can use npm i git://github.com/cybertk/ramlev.git#master

arnelandwehr commented 9 years ago

still the same outcome for me:

ramlev:
- .npmignore 
- LICENSE
- README.md 
- bin 
- lib 
- node_modules 
- package.json

the issue is also mentioned here: https://github.com/npm/npm/issues/7262 and still open :(.

Proposed solutions include:

  1. Publishing from a tarball would definitely work
  2. Having separate 'stable' and 'next' release lines with dist-tags that follow the different dev branches is probably what I would recommend, to reduce your users' dependence on github-based installs , if you wanted to do that (that's the way I'd go)
cybertk commented 9 years ago

The dir structure is correct, could you try run ./node_modules/ramlev/bin/ramlev

arnelandwehr commented 9 years ago

ah sry missed that the lib folder is there and already includes the latest sources. Works like a charm!

Thx for the help :)