volojs / volo

Create front end projects from templates, add dependencies, and automate the resulting projects
https://volojs.github.io/
Other
1.41k stars 100 forks source link

Cannot add jasmine.async - get 404 with a strange url #176

Closed togakangaroo closed 10 years ago

togakangaroo commented 10 years ago
    volo add -amd derickbailey/jasmine.async exports=AsyncSpec

gives a 404 to a url that that volo should have no reason to expect exists (sorry, can't copy it out right now as my VM's copy-paste is currently broken).

jrburke commented 10 years ago

Here is what happens:

It looks like the master version of package.json does have the right URL, so I expect the next tagged release to work correctly. In the meantime, you can use the URL directly for the file:

volo add https://raw.github.com/derickbailey/jasmine.async/v0.1.0/lib/jasmine.async.js

That, or ask the library author to either update the package.json for the v0.1.0 tag to point to right URL or place a copy of the file at that URL for that tagged version.

Closing as a misconfiguration on the target library side.