anthonyshort / deku

Render interfaces using pure functions and virtual DOM
https://github.com/anthonyshort/deku/tree/master/docs
3.41k stars 130 forks source link

Cannot npm install from github #414

Closed danwad closed 8 years ago

danwad commented 8 years ago

2.0.0-rc16 is the latest version on npm, but there are some changes I'd like from master.

From a bit of googling, I found that I can do this by installing from github with npm install --save dekujs/deku

However, .npmignore prevents src from being included when the package is installed so require('deku') fails.

Should the build directory lib be committed to the repo?

What is the recommended way of using bleeding edge deku?

rstacruz commented 8 years ago

What is the recommended way of using bleeding edge deku?

There isn't one, unfortunately. This is an issue for all npm repositories with its built code not committed to the repo, or not updated regularly.

Here are some workarounds:

danwad commented 8 years ago

npm link works well - thanks :)