This package has been deprecated

Author message:

Babel support is now part of rollup, use `grunt-rollup` instead.

grunt-rollup-babel

0.6.2 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i grunt-rollup-babel

Weekly Downloads

2

Version

0.6.2

License

MIT

Last publish

Collaborators

  • reconbot