3

我有两种不同的路径来编译移动代码和桌面代码。我想通过在命令行中传递一个 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');
};
4

2 回答 2

6

事实证明我做得对,我只需要正确传递 env 的变量:

$ grunt --target="桌面"

于 2013-10-28T18:14:12.837 回答
0

--option 的替代方法是通过冒号传递它。例如将其传递给 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);

    //...
};

使用时需要注意的一个问题是,当您使用 grunt 任务(如有用的grunt-concurrentprocess )重新生成您的进程时,它将不起作用。在这种情况下,最好使用grunt.option,如@im_benton 所示。在你的 Gruntfile.js 中传递和拾取它作为 `grunt mytask --myvar=myvalgrunt.option('myvar')

于 2014-02-09T06:16:38.537 回答