component-amd

0.1.0 • Public • Published

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-amd

Usage

Command Line

Build the component, including AMD modules, by invoking component build with component-amd in use.

component build -u component-amd

API

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 test

Build Status David DM

Credits

License

The MIT License

Copyright (c) 2013 Jared Hanson <http://jaredhanson.net/>

Readme

Keywords

none

Package Sidebar

Install

npm i component-amd

Weekly Downloads

1

Version

0.1.0

License

none

Last publish

Collaborators

  • jaredhanson