A island plugin for Babel (目前测试用于文件头部输出作者信息)
$ npm i --save-dev babel-plugin-island
{
"plugins": [
[
"island",
{
"author": "Harvey Zack",
"email": "717995589@qq.com",
"homepage": "http://www.zhw-island.com"
}
]
];
}
require('babel-core').transform('code', {
plugins: [
[
'island',
{
author: 'Harvey Zack',
email: '717995589@qq.com',
homepage: 'http://www.zhw-island.com'
}
]
]
});
MIT © Harvey Zack