Rollup watch only an config in exported array

Rollup watch only one config in exported array

有人知道吗,我怎么只能看数组的一个配置, 我已经导出了,通过输入 rollup -c -w 并且只输入 rollup -c 它将编译成4个不同的版本?这意味着,如果我要观看 js 文件,它只会为我编译一个配置,例如cjs 一个。我已经尝试过,将 watch 设置为 false,但它不起作用,我认为两个不同的文件太愚蠢了。有人对此有想法吗?这是我的实际配置:

// rollup.config.js
import babel from 'rollup-plugin-babel';
import commonjs from 'rollup-plugin-commonjs';
import resolve from 'rollup-plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';

import pkg from './package.json';

export default [
    {
        input: 'src/main.js',
        output: {
            file: pkg.main,
            format: 'cjs',
        },
        watch: {
            exclude: ['node_modules/'],
        },
        plugins: [
            resolve(),
            commonjs(),
            babel({
                exclude: 'node_modules/**',
                babelrc: false,
                presets: [
                    [
                        '@babel/env',
                        {
                            modules: false,
                            useBuiltIns: 'usage',
                            targets: 'maintained node versions',
                            corejs: '3.6.5',
                        },
                    ],
                ],
            }),
        ],
    },
    {
        input: 'src/main.js',
        output: {
            file: pkg.browser,
            format: 'umd',
            name: 'eatFruit',
        },
        plugins: [
            resolve(),
            commonjs(),
            babel({
                exclude: 'node_modules/**',
            }),
        ],
    },
    {
        input: 'src/main.js',
        output: {
            file: pkg.browser.replace(/\.js$/, '.min.js'),
            format: 'umd',
            name: 'eatFruit',
        },
        plugins: [
            resolve(),
            commonjs(),
            babel({
                exclude: 'node_modules/**',
            }),
            terser(),
        ],
    },
    {
        input: 'src/main.js',
        output: {
            file: pkg.module,
            format: 'es',
        },
        plugins: [
            resolve(),
            commonjs(),
            babel({
                exclude: 'node_modules/**',
            }),
        ],
    },
];

嗯,这个功能还不存在,但我现在已经开始了一个问题。 https://github.com/rollup/rollup/issues/3607