rotundasoftware / parcelify

Add css to your npm modules consumed with browserify.
MIT License
251 stars 20 forks source link

add watchify as dependency #31

Closed wilzbach closed 9 years ago

wilzbach commented 9 years ago

Watchify is required in the cmd.js - in theory we could also add it as optional dependency, but this would require a bit more code ;-)

dgbeck commented 9 years ago

Hi @greenify !

Using parcelify directly from the command line, e.g.

parcelify main.js -o bundle.css

has been depreciated as of v1.0.0 in favor of this new plugin syntax.

browserify main.js -o bundle.js -p [ parcelify -o bundle.css ]

With the new plugin syntax there is no dependency, so we are going to leave browserify / watchify out of dependencies going forward.

Thanks in any case for bringing up this issue!