New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

requirejs-babel-plugin

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

requirejs-babel-plugin

A better RequireJS plugin for babel

latest
Source
npmnpm
Version
0.5.0
Version published
Weekly downloads
82
-3.53%
Maintainers
1
Weekly downloads
 
Created
Source

requirejs-babel-plugin

npm npm npm GitHub license

A better RequireJS plugin for babel

Installation

  $ npm install requirejs-babel-plugin

or

  $ npm install -g bower
  $ bower install requirejs-babel-plugin

Usage

Add the paths to configuration:

  paths: {
    es6: 'your_file_path/es6',
    babel: 'your_babel_file_path',
    ...
  }

Reference files via the es6! plugin name:

  define(['es6!your_es6_module'], function(module) {
    // ...
  });

When optimizing the source code with r.js, exclude the babel and plugin:

  modules: [{
    "name": "your_entry_file"
  }],
  stubModules: ['babel', 'es6'] // Stub out the modules

Options

Babel 6.x

  requirejs.config({
    es6: {
      fileExtension: '.js' // put in .jsx for JSX transformation
    },
    babel: {
      presets: ['es2015'],
      plugins: ['transform-es2015-modules-amd']
    }
  });
  

Babel 5.x

  requirejs.config({
    es6: {
      fileExtension: '.js' // put in .jsx for JSX transformation
    },
    babel: {
      blacklist: [],
      nonStandard: true,
      modules: 'amd'
    }
  });
  

See more: https://babeljs.io/docs/usage/options/

License

requirejs-babel-plugin is available under the terms of the MIT license.

Keywords

requirejs

FAQs

Package last updated on 04 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts