Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
babel-preset-futagozaryuu
Advanced tools
This is a Babel preset of other presets and plugins that I most commonly use.
- From v2.12, this preset is using the
@babel/*
dependencies for Babel 7+- From v3 this preset is using the proposal plugins directly as Babel 7 dropped the stage presets
$ npm install --save-dev babel-preset-futagozaryuu
Put the following into your .babelrc
file:
{
"presets": [ "futagozaryuu" ]
}
or on the CLI
$ babel src --out-dir lib --presets futagozaryuu
You can see the complete list of options in babel-preset-futagozaryuu/lib/config/default-options.js.
{
"presets": [
[ "futagozaryuu", {
// set root directory for `babel-plugin-module-resolver`
"disableResolver": false,
"root": [ "src" ],
// disable the use of `@babel/preset-stage-*` plugins
// (anything not a number between 0 to 3 is the same)
"stage": 4,
// Target a spefic version of node
// (alternative: `package.json#engines.node`)
"node": 6,
// Blacklisting the var/const transform
"exclude": [ "transform-es2015-block-scoping" ],
// Blacklisting ES Modules transpilation
"modules": false,
// re-enable the use of `regenerator`
"regenerator": true
} ]
]
}
When using the option useBuiltIns
with values usage
or entry
, ensure that you:
corejs
option enabled (by default this is set to { version: 3, proposals: true }
)core-js
and regenerator-runtime
in your published packageAdding the following files (and settings) will ensure that VS Code can find your ES6+ files even if you are using babel-plugin-module-resolver to change the root path of your module lookups during transpile.
This is based on a comment in tleunen/babel-plugin-module-resolver#92 by @jgoux.
.vscode/settings.json
:
{
"path-intellisense.mappings": {
"/": "${workspaceRoot}/src"
}
}
src/jsconfig.json
:
{
"compilerOptions": {
"baseUrl": "./",
}
}
I have tried to follow semver versioning, but from v2.19 I will follow these rules:
2.18.0
= RELEASE.REVISION.PATCH
RELEASE
is incremented each time a new major version of Babel is supportedPATCH
is only incremented when
REVISION
is incremented for all other changesPATCH
is reset when REVISION
incrementsCopyright © 2017+ Futago-za Ryuu, https://github.com/futagoza
Released under the MIT License, http://opensource.org/licenses/MIT
FAQs
Futago-za Ryuu's Babel preset
We found that babel-preset-futagozaryuu 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.