kevva / elm-bin

elm-platform bin-wrapper that makes it seamlessly available as a local dependency
MIT License
18 stars 5 forks source link

Add static files needed for debug mode #15

Closed jvoigtlaender closed 9 years ago

jvoigtlaender commented 9 years ago

This addresses the "debugger files not included" part of https://github.com/kevva/elm-bin/issues/7.

After npm installing a version of this package with those files now included, an export ELM_HOME=.../node_modules/elm/share should be enough to make the debug mode work okay.

jvoigtlaender commented 9 years ago

Cool, thanks for merging this!

Can you release a new version of the package so we can try this out "live"? (I don't know what a "release" involves exactly. Is it just a matter of changing the version number in package.json and adding a GitHub tag? Or does it involve uploading some stuff to an npm database?)

kevva commented 9 years ago

Yup, basically. And running npm publish.

kevva commented 9 years ago

Should be published now.

jvoigtlaender commented 9 years ago

Hmm, seems not to be working. I suppose the reason is that you named the latest release "1.5.0" instead of "v1.5.0". The previous versions all had the form "v...", maybe some of the install code is depending on that "v"?

kevva commented 9 years ago

@jvoigtlaender, fixed now.

jvoigtlaender commented 9 years ago

Yes, works perfectly. Thanks!