当前位置: 首页 > 工具软件 > Rollup > 使用案例 >

使用rollup配置

柯琛
2023-12-01

安装rollup包命令:yarn add rollup rollup-plugin-babel @babel/core @babel/preset-env -D

rollup.config.js

export default {

    input: './index.js',
    output:{
        file:'../src/client/bundle.js',
        format:'mud' // and cmd  commonjs 都支持
    },
    watch:{
        exclude:"node_modules/**"
    },
    plugins:[
        babel({
            babelrc: false,
        presets:[
            "@babel/preset-env"
        ]
        })
    ]

使用配制时,只要在package.json中加一条

scripts:{

    "dev": "rollup -c --watch"

}

项目的命令行里运行:npm run dev  就完成打包了

 类似资料: