GT2/GT2-Android/node_modules/babel-plugin-syntax-dynamic...
Ren Ren Juan c5fd23b54f Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
..
lib Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
.npmignore Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
README.md Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
package.json Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00

README.md

babel-plugin-syntax-dynamic-import

Allow parsing of import().

Installation

$ npm install babel-plugin-syntax-dynamic-import

Usage

.babelrc

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

Via CLI

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

Via Node API

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