Why builder-jquery-css?
Use builder-jquery-css
to generate the CSS bundle of a jQuery project that
uses JS comments like //>> css.<name>: files
to define its CSS dependencies and that uses AMD
definitions to define its JS dependencies.
It's ideal for applications that builds bundles on the fly using Node.js.
Usage
npm install builder-jquery-css
var fs = ;var jqueryCssBuilder = ; var files = "main.js": fs "main.css": fs "foo.js": fs "foo.css": fs "bar.js": fs "bar.css": fs ... ; ;
API
jqueryCssBuilder( files, which, requirejsConfig, callback )
files Object containing (path, data) key-value pairs, e.g.:
{
<path-of-file-1>: <data-of-file-1>,
<path-of-file-2>: <data-of-file-2>,
...
}
which String css name selector.
requirejsConfig Object require.js build configuration[
callback Function called with three arguments: null or an Error object, a String with the built css content, an Object with the cloned built files structure.
Test
npm test
License
MIT © Rafael Xavier de Souza