简体   繁体   中英

How to pass in package.json array to grunt.js

is there a way to pass in an array to grunt.js from the package.json file? I've tried a few different ways and none of them seem to work. I currently have:

/*global module:false*/
module.exports = function(grunt) {

     // Project configuration.
     grunt.initConfig({
    pkg: '<json:package.json>',

    lint: {
      files: '<%= pkg.lint.join(", ") %>'
    }

    // Default task 'lint qunit concat min'
    grunt.registerTask('default', 'lint');
};

package.json

{
  "lint": [   
              "grunt.js",
              "test.js"
          ]
}

The only solution that I have been able to find is to pass in a specific index of the array; eg <%= pkg.lint[0] %>. Thanks in advance for your help!

Since gruntjs in run in node you can access the package.json like:

var package = require('./package.json'),
    property = package.property[0];

I think that the <%= … %> syntax (variable interpolation in Underscore's template system ) can only output strings, not arrays/objects.

Try this instead:

lint: {
    files: '<config:pkg.lint>'
}

I found this syntax in Grunt's jQuery init task .

grunt.initConfig({ lint: grunt.file.readJSON('package.json').lint, });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM