通过命令行更改Grunt配置变量

时间:2013-10-28 17:47:46

标签: javascript command-line-interface gruntjs

我有两个不同的路径,我想编译移动与桌面代码。我想通过在命令行中传递一个grunt参数来交替。

/**
 * @module Build
 * @class Build.Config
 * @static
 */

module.exports = function(grunt) {

var config = {};

    var NewPath;

    var env = grunt.option('target') || "Mobile";


    if (env == "Desktop") {  // MAKE THIS DYNAMIC WITH COMMAND LINE ARGUMENT
        newPath = "source/desktop/";
    }
    else {
       newPath = "source/mobile/";
    }

config.root = newPath;
config.stylesheets = config.root + '/stylesheets';
config.javascripts = config.root + '/javascripts';
config.images = config.root + '/images';
config.jsbin = config.javascripts + '/generated';
config.cssbin = config.stylesheets + '/generated';
config.docsbin = 'docs';



// Project configuration.
grunt.initConfig({

    'beautifier': {
        'options': {
            'indentSize': 1,
            'indentChar': '\t',
            'spaceAfterAnonFunction': true
        }
    },

    'beautify': {
        'files': [ config.javascripts + '/app/**/*.js' ]
    },

    'requirejs': require('./build/config/requirejs.js')(config),

    'watch': require('./build/config/watch.js')(config),
    'stylus':require('./build/config/stylus.js')(config)

});


// Default task.
grunt.registerTask('default', ['stylus:compile','requirejs']);      
grunt.registerTask('dev', ['stylus:dev']);

grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-contrib-stylus');
};

2 个答案:

答案 0 :(得分:5)

原来我做得对,我只需要正确传递env的变量:

$ grunt --target =“桌面”

答案 1 :(得分:0)

替代 - 选项是将其传递给冒号。例如,将其传递给jshint

grunt jshint:desktop

然后配置grunt以使用process.argv获取该命令行参数,您可以使用它来配置路径或其他可能需要的路径:

module.exports = function(grunt) {
    "use strict";

   //dynamic config after the ':'. 'desktop' here
    var env = process.argv[2].split(':')[1]; 


    var config = {
        pkg: grunt.file.readJSON('package.json'),

        jshint: {
            options: {
                jshintrc: '.jshintrc',
                "force": true
            }
        },
    };

    //...

    config.jshint[env] = { // ex:  $ grunt jshint:desktop
      src: ['public/'+env+'/js/main.js']
    };

    //...

    // Project configuration.
    grunt.initConfig(config);

    //...
};

使用process时的一个警告是,当您使用重新生成过程的grunt任务时,它将无效,就像有用的grunt-concurrent一样。在这种情况下,最好与grunt.option一起使用,如@im_benton所示。传递grunt mytask --myvar=myval并在你的Gruntfile.js中将其作为grunt.option('myvar')`