gpt4 book ai didi

javascript - 如何将 package.json 数组传递给 grunt.js

转载 作者:可可西里 更新时间:2023-11-01 01:58:11 25 4
gpt4 key购买 nike

有没有办法从 package.json 文件中将数组传递给 grunt.js?我尝试了几种不同的方法,但似乎都不起作用。我目前有:

/*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');
};

包.json

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

我能找到的唯一解决方案是传入数组的特定索引;例如<%= pkg.lint[0] %>。预先感谢您的帮助!

最佳答案

由于 gruntjs 在节点中运行,您可以像这样访问 package.json:

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

关于javascript - 如何将 package.json 数组传递给 grunt.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12408535/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com