babel-preset-divi-extension
v1.0.0
Published
Babel preset used by Create Divi Extension
Downloads
373
Readme
babel-preset-divi-extension
This package includes the Babel preset used by Create Divi Extension. Please refer to its documentation:
- Getting Started – How to create a new app.
- User Guide – How to develop apps bootstrapped with Create Divi Extension.
Usage in Create Divi Extension Projects
The easiest way to use this configuration is with Create Divi Extension, which includes it by default. You don’t need to install it separately in Create Divi Extension projects.
Usage Outside of Create Divi Extension
If you want to use this Babel preset in a project not built with Create Divi Extension, you can install it with following steps.
First, install Babel.
Then install babel-preset-divi-extension.
npm install babel-preset-divi-extension --save-dev
Then create a file named .babelrc
with following contents in the root folder of your project:
{
"presets": ["divi-extension"]
}
This preset uses the useBuiltIns
option with transform-object-rest-spread and transform-react-jsx, which assumes that Object.assign
is available or polyfilled.