Dependency examples
It would rock if you put up some examples of how to include dependencies, specifically prelude.ls. I've been boxing to get prelude.ls in for hours now, and its been a bit of a rabbit hole.
Generally you can add js to bower.json.ls, but it seems the prelude versions on bower don't play nicely with our commonjs-require module :/
+1 I'd love to see how to include prelude-ls !
edit:
the following worked for me: download prelude-ls with npm or bower, include bower_components/prelude-ls/browser/prelude-browser-min.js in the gulpfile, and to use prelude in a source file, either require it entirely:
prelude = require 'prelude-ls'
or just the functions needed:
{map, sum} = require 'prelude-ls'
just like says the doc: http://www.preludels.com/#installation
that worked for me with Angularjs and gulp.