4

我正在尝试使用 Grunt、usemin 2、requirejs 和 uglify 来解决问题。我在构建中观察到的是 requirejs 没有正确地将我的依赖项包含到我的单个连接构建文件中。当我从 /dist 运行 index.html 时,我在查找“jquery”、“app”和一些第三方 js 文件时看到错误,或者有时“未定义定义”。

我在 grunt-usemin 上阅读了以下问题并删除了 require 块,但这些线程中仍然存在一些问题。

我继续搜索并看到这篇文章如何集成 Yeoman 和 Requirejs,这让我到了那里,因为当我从使用 grunt-contrib-requirejs 更改为 grunt-requirejs 时,我看到 Requirejs 优化器正在运行。不幸的是,我仍然看到这些错误:

Uncaught ReferenceError: define is not defined.

我的 index.html 中有以下内容:

<!-- build:js js/main.js -->
    <script src="bower_components/requirejs/require.js"></script>
    <script src="js/main.js"></script>
<!-- endbuild -->

这是我的 Grunt 文件:http: //jsbin.com/futocusu/3/edit ?js

在 issue #112 中有关于创建一篇关于在这个主题上使用 Yeoman 的文章,但我认为它还没有写完。

有没有人想出将 usemin v2 与 grunt 和 requirejs 一起使用以在构建时输出到单个 concat+uglify 文件的最佳方法?我也不确定使用 grunt-contrib-requirejs 和 grunt-requirejs 有什么区别以及何时使用哪一个。

4

1 回答 1

0

看起来好像您正试图对 main.js 做太多事情。

我在Gruntfile.js中有以下构建任务

grunt.registerTask('build', [
        'copy', // copies the src directory to dist (htdocs)
        'requirejs', // do an r.js build to concat modular dependencies
        'concat:head', // concats js in the head
        'uglify:head', // compresses js in the head
        'uglify:foot', // compresses js in the foot
        'cssmin', // minifies and concats css
        'usemin', // runs through html and inputs minified js and css
        'clean:afterBuild' // deletes files that are not required for build
    ]);

以下是每个相关的 Grunt 任务(对我来说,这些任务存储在单独的文件中,因为我使用 load-grunt-config)。如果您想在您的 gruntfile 中使用这些,那么您需要做的就是获取返回对象中的所有内容并将其粘贴到您的 gruntfile 中的任务值中:

复制

module.exports = function (grunt, options) {
    return {
        main: {
            cwd: 'src/',
            src: '**',
            dest: 'dist/',
            expand: true,
            flatten: false
        },
    };
};

需要js

module.exports = function(grunt, options) {
    return {
        compile: {
            options: {
                appDir: "src/to/require/app",
                baseUrl: "./",
                mainConfigFile: "src/to/require/app/common",
                dir: "dist/to/require/app",
                // build a common layer
                modules: [
                    {
                        "name": "common"
                    }
                ]
            }
        }
    };
};

连接

module.exports = function (grunt, options) {
    return {
        head: {
            /* other stuff */
        },
        foot: {
            src: [
                'dist/to/require/app/some_other_js.js',
                'dist/to/require/app/external/require.js',
                'dist/to/require/app/external/require.text.js',
                'dist/to/require/app/common.js'
            ],
            dest: 'src/to/require/app/compiled_footer_js.js',
        }
    };
};

丑化

module.exports = function (grunt, options) {
    return {
        head: {
            /* other stuff *
        },
        foot: {
            files: {
                'src/to/require/app/compiled_footer_js.min.js': ['src/to/require/app/compiled_footer_js.js']
            }
        }
    };
};

使用敏

module.exports = function (grunt, options) {
    return {
        html: [            
            'src/path/to/index.html'
        ]
    };
};
于 2015-02-22T22:27:27.667 回答