grunt-commonjs

0.2.0rc7 • Public • Published

grunt-commonjs

Wraps .js files into CommonJS modules for client-side usage.

Getting Started

Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-commonjs --save-dev

Then add this line to your project's Gruntfile.js:

grunt.loadNpmTasks('grunt-commonjs');

###CommonJS loader You'll need a loader to detect your wrapped packages. You can use this simple CommonJS loader which is based off how brunch.io loads CommonJS packages.

Documentation

Configure which files to be copied in your initConfig:

grunt.initConfig({

  // ... other configs

  // wrap my modules with define
  commonjs: {
    modules: {
      cwd: 'assets/',
      src: ['**/*.js'],
      dest: 'dist/'
    }
  },

  // ... other configs
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.

Release History

  • 2013 Feb 04 - v0.2.0rc7 - Refactor to use grunt 0.4.x's file properties.
  • 2013 Jan 29 - v0.1.0rc7 - Initial release.

License

Copyright (c) 2012 Team Delicious, AVOS Systems Inc. Licensed under the MIT license.

Readme

Keywords

none

Package Sidebar

Install

npm i grunt-commonjs

Weekly Downloads

22

Version

0.2.0rc7

License

none

Last publish

Collaborators

  • chrisabrams