Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

builder-jquery-css

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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.

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-86.36%
Maintainers
2
Weekly downloads
 
Created
Source

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 = require( "js" );
var jqueryCssBuilder = require( "builder-jquery-css" );

var files = {
  "main.js": fs.readFileSync( "./main.js" ),
  "main.css": fs.readFileSync( "./main.css" ),
  "foo.js": fs.readFileSync( "./foo.js" ),
  "foo.css": fs.readFileSync( "./foo.css" ),
  "bar.js": fs.readFileSync( "./foo.js" ),
  "bar.css": fs.readFileSync( "./bar.css" ),
  ...
}

jqueryCssBuilder( files, "structure", {
  include: "main"
}, function( error, builtStructureCss ) {
  ...
});

jqueryCssBuilder( files, "theme", {
  include: "main"
}, function( error, builtThemeCss ) {
  ...
});

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

FAQs

Package last updated on 29 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc