用于开发/生产环境的替代grunt.js任务

时间:2013-08-27 22:05:05

标签: javascript local development-environment live gruntjs

我真的很想能够拥有一个开发grunt文件并使用相同的文件生成脚本版本。

我在SO上尝试了这个建议但是我的脚本在尝试调用dev / prod参数时会失败。我相信答案是针对旧版本的grunt,或者是我正在使用的插件。

module.exports = function (grunt) {

    // load all grunt tasks
    require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);

    grunt.initConfig({
        pkg: grunt.file.readJSON('package.json'),
        compass: {
            dev: {
                options: {
                    config: 'config.rb',
                    force: true,
                    livereload: true
                }
            }
        },
        uglify: {
            build: {
                src: ['docroot/js/*.js', 'docroot/components/**/*.js'],
                dest: 'docroot/dis/main.min.js'
            }
        },
        watch: {
            options: {
                dateFormat: function(time) {
                    grunt.log.writeln('The watch finished in ' + time + 'ms at' + (new Date()).toString());
                    grunt.log.writeln('Waiting for more changes...');
                },
                livereload: true
            },
            sass: {
                files: ['docroot/sass/*.scss'],
                tasks: ['compass:dev']
            },
            /* watch and see if our javascript files change, or new packages are installed */
            js: {
                files: '<%= uglify.build.src %>',
                tasks: ['uglify']
            },
            /* watch our files for change, reload */
            livereload: {
                files: ['*.html', 'docroot/css/*.css', 'docroot/img/*', 'docroot/js/{main.min.js, plugins.min.js}'],
                options: {
                    livereload: true
                }
            }
        }
    });


    grunt.registerTask('default', 'watch');
};

真的,只要我可以通过调用它们来运行两个版本,例如:

 grunt //local
 grunt prod //live

然后我可以使用脚本和要加载的内容。

1 个答案:

答案 0 :(得分:14)

您也可以注册调用任务数组的任务

grunt.registerTask('prod', ['tasks1','task2']); 

在您的默认任务之前,那将是

$ grunt prod