0.6.2 • Published 8 years ago

grunt-rollup-babel v0.6.2

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

This module is deprecated. Babel support is now a rollup plugin. You should use grunt-rollup instead.

grunt-rollup-babel

Build Status dependencies

Grunt plugin for rollup-babel - next-generation ES6 module bundler forked from grunt-rollup

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-rollup-babel --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-rollup-babel');

The "rollup" task

Overview

In your project's Gruntfile, add a section named rollup to the data object passed into grunt.initConfig().

grunt.initConfig({
  rollup_babel: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
});

Options

Supports all the options from rollup's JavaScript API.

Sourcemaps

Sourcemaps are not supported in rollup babel. When they are this plugin will work without issue.

Usage Examples

grunt.initConfig({
  rollup_babel: {
    options: {
      external: ['react'],
      format: 'cjs'
    },
    files: {
      'dest/bundle.js': ['src/entry.js'], // Only one source file is permitted
    },
  },
});

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.

Releasing

npm version minor && git push --tags origin master && npm publish
0.6.2

8 years ago

0.6.1

9 years ago

0.5.1

9 years ago

0.5.0

9 years ago

0.4.0

9 years ago