2

我正在尝试编写一个自定义脚本/插件以包含在 requireJS r.js 优化器中(用于指纹静态文件和一个用于捆绑 JSON 资源)。

我没有想到的是如何在构建过程中触发我的自定义优化器。我可以编写脚本,但我将如何bundle-build.js在优化期间触发模块。

感谢提示!

编辑:
我知道我可以使用“onBuildRead/Write”,但这不是添加优化器插件的地方。像require-css这样的东西更接近,但是一个文件前缀,它触发插件,它有一个pluginBuilder指定在构建期间使用。不完全是我要找的。

4

1 回答 1

3

优化器应该拾取所有指定为依赖项的文件。如果您需要包含额外的内容,则可以使用 onBuildRead 或 onBuildWrite 回调添加额外的逻辑,您可以在其中添加/删除额外的内容:

({
    name: 'main',
    baseUrl: '../',
    // optimize: 'none',
    optimize: 'uglify2',
    exclude: ['jquery'],
    mainConfigFile: '../main.js',
    out: '../main.min.js',
    // A function that if defined will be called for every file read in the
    // build that is done to trace JS dependencies.
    // Remove references to console.log(...)
    onBuildRead: function (moduleName, path, contents) {
        return contents;
        // return contents.replace(/console.log(.*);/g, '');
    },
    onBuildWrite: function (moduleName, path, contents) {
        // Add extra stufff;
        return contents;
    }
})
于 2013-05-12T22:35:37.880 回答