j0hnsmith / django-pipeline-browserify

MIT License
37 stars 18 forks source link

Command Compiles Incorrectly with Presets #22

Closed djskripta closed 7 years ago

djskripta commented 7 years ago

When i set my BROWSERIFY_ARGUMENTS to include the es2015 and react presets as described in the docs, the command compiles like this:

browserify -t [babelify --presets [es2015 react]] --list *****\static\***\js\app.browserify.js

The intended command is:

browserify -t [babelify --presets [es2015 react] ****\static\***\js\app.browserify.js] --list

I may just end up forking this and making my own implementation

djskripta commented 7 years ago

Turns out this was an issue with directory structure and where my browserify and es2015 preset was saved to. Still haven't resolved it, but im pretty sure it's not an issue with this library

natevw commented 7 years ago

Thanks for following up, and feel free to re-open if need be!