0.1.0 • Published 12 years ago
component-amd v0.1.0
component-amd
Component builder plugin that transpiles AMD modules into CommonJS modules which can be included in component builds.
With this plugin in use, CommonJS and AMD modules can be freely intermixed within the component toolchain.
Install
$ npm install component-amdUsage
Command Line
Build the component, including AMD modules, by invoking component build
with component-amd in use.
component build -u component-amdAPI
var fs = require('fs')
, Builder = require('component-builder')
, amd = require('component-amd');
var builder = new Builder(__dirname);
builder.use(amd);
builder.build(function(err, obj) {
if (err) throw err;
fs.writeFileSync('build/build.js', obj.require + obj.js);
if (obj.css) fs.writeFileSync('build/build.css', obj.css);
});Tests
$ npm install
$ make testCredits
License
Copyright (c) 2013 Jared Hanson [http://jaredhanson.net/](http://jaredhanson.net/)
0.1.0
12 years ago

