在 browserify/watchify 运行 之后触发 g运行t 任务

Trigger grunt task after browserify/watchify run

我正在尝试通过 grunt/browserify 构建我的 JS 包。我还使用 grunt 进行 scss 编译。为此,我使用 grunt-watch 在更改时触发 scss 编译。

我希望 JS-browserify 具有相同的行为。 grunt-browserify 附带了 "watch" 选项,它的作用非常好。

我唯一的问题是:我想在 "re-browserify" 后收到通知。对于 SCSS,我使用 grunt-notify。但是我没有找到任何方法在 browserify-watch 之后触发 grunt 任务。

我的 gruntfile 摘录:

var gruntOptions = {

    notify: {
        browserify_node_modules: {
            options: {
                title: "Browserify",
                message: "node_modules build"
            }
        }
    },

    browserify: {
        node_modules: {
            src: ["node_modules.js"],
            dest: "trunk/js/lib/node_modules.js",
            options: {
                watch: true,
            }
        }
    }
};

最佳情况:

            options: {
                watch: true,
                finishTask: "notify:browserify_node_modules"
            }

谢谢!

您可以检查Browserify生成的文件是否被更改,然后触发任务。

在 Grunt 中安装 watch 任务:

npm install grunt-contrib-watch --save-dev

Gruntfile.js 内配置 watch 任务:

grunt.initConfig({

    // other tasks

    your_task: {
        // ...
    },

    watch: {
        dev: {
            files: 'trunk/js/lib/node_modules.js', // file generated by Browserify
            options: { spawn: false },
            tasks: ['your_task']
        }
    }
});

grunt.loadNpmTasks('grunt-contrib-watch');