babel-plugin-inject-banner
v1.0.0
Published
Inject code into every source file
Downloads
1
Readme
Babel Plugin / Inject Banner Code
This is pretty simple and takes pretty much no explanation - just read usage
Install
npm i --save-dev babel-plugin-inject-banner
Usage
//.babelrc
{
plugins: [
['babel-plugin-inject-banner',{
bannerCode: "console.log('hello from your banner');"
}]
]
}