Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
babel-plugin-es6-promise-esm
Advanced tools
Babel plugin that rewrites Promise references to es6-promise, support ESM for Rollup
Babel plugin that rewrites Promise references to es6-promise
, but only if
necessary. Support ES Module, Rollup.
Forked from https://github.com/novemberborn/babel-plugin-es6-promise.
$ npm install --save-dev babel-plugin-es6-promise-esm
Then add es6-promise
to your Babel config, like:
{
"plugins": ["es6-promise-esm"]
}
es6-promise
must be installed separately.
This plugin rewrites files that reference the Promise
built-in. It inserts the
following code at the top of each file:
import _ESPromise from "es6-promise";
var _Promise = typeof Promise === 'undefined'
? _ESPromise.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.
FAQs
Babel plugin that rewrites Promise references to es6-promise, support ESM for Rollup
The npm package babel-plugin-es6-promise-esm receives a total of 2 weekly downloads. As such, babel-plugin-es6-promise-esm popularity was classified as not popular.
We found that babel-plugin-es6-promise-esm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.