Extended plugin sample for Babel.
$ npm install babel-plugin-hello-world
.babelrc
{
"plugins": ["hello-world"]
}
$ babel --plugins hello-world script.js
require('babel').transform('code', {
plugins: ['hello-world']
});
Extended plugin sample for Babel.
$ npm install babel-plugin-hello-world
.babelrc
{
"plugins": ["hello-world"]
}
$ babel --plugins hello-world script.js
require('babel').transform('code', {
plugins: ['hello-world']
});