Golang bot for managing discord verifications
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Gregory Rudolph 8a6e029f83
Add react
4 years ago
..
lib Add react 4 years ago
.babelrc Add react 4 years ago
.editorconfig Add react 4 years ago
.eslintignore Add react 4 years ago
.eslintrc Add react 4 years ago
.npmignore Add react 4 years ago
.travis.yml Add react 4 years ago
CHANGELOG.md Add react 4 years ago
LICENSE Add react 4 years ago
README.md Add react 4 years ago
package.json Add react 4 years ago

README.md

babel-plugin-dynamic-import-node

Babel plugin to transpile import() to a deferred require(), for node. Matches the proposed spec.

NOTE: Babylon >= v6.12.0 is required to correct parse dynamic imports.

Installation

$ npm install babel-plugin-dynamic-import-node --save-dev

Usage

.babelrc

{
  "plugins": ["dynamic-import-node"]
}

Via CLI

$ babel --plugins dynamic-import-node script.js

Via Node API

require('babel-core').transform('code', {
  plugins: ['dynamic-import-node']
});