1. babel-plugin-es6-promise
Babel plugin that rewrites Promise references to es6-promise, but only if necessary
babel-plugin-es6-promise
Package: babel-plugin-es6-promise
Created by: novemberborn
Last modified: Mon, 13 Jun 2022 04:01:13 GMT
Version: 1.1.1
License: ISC
Downloads: 28,673
Repository: https://github.com/novemberborn/babel-plugin-es6-promise

Install

npm install babel-plugin-es6-promise
yarn add babel-plugin-es6-promise

babel-plugin-es6-promise

Babel plugin that rewrites Promise references to es6-promise, but only if
necessary. Tested with Node.js 0.10 and above.

Installation

 $ npm install --save-dev babel-plugin-es6-promise

Then add es6-promise to your Babel config, like:

 {
  "plugins": ["es6-promise"]
}

es6-promise must be installed separately.

Behavior

This plugin rewrites files that reference the Promise built-in. It inserts the
following code at the top of each file:

 var _Promise = typeof Promise === 'undefined'
  ? require('es6-promise').Promise
  : Promise

This means es6-promise is only loaded when there is no Promise built-in
available. Each Promise reference is rewritten to _Promise.

Note that require() is used rather than a ES2015 module import. This may make
it difficult to do further import transforms.

Also note that the _Promise variable name in this example is determined by
Babel and may differ depending on your code.

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin