1 Star 0 Fork 0

Joelchu/rollup-plugin-server-io

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 373 Bytes
一键复制 编辑 原始数据 按行查看 历史
Joelchu 提交于 2021-03-15 21:05 +08:00 . Fix the build script
// build script for the rollup-plugin-server-io package
import buble from '@rollup/plugin-buble'
export default {
input: 'src/index.js',
output: [{
file: 'dist/index.cjs.js',
format: 'cjs',
exports: 'default'
}],
plugins: [
buble()
],
onwarn ({ code, message }) {
if (code !== 'UNRESOLVED_IMPORT') {
console.warn(message)
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/joelchu/rollup-plugin-server-io.git
git@gitee.com:joelchu/rollup-plugin-server-io.git
joelchu
rollup-plugin-server-io
rollup-plugin-server-io
master

搜索帮助