我在我的Gruntfile中使用以下内容:
grunt.initConfig({
assets: grunt.option('assets'),
config: grunt.file.readJSON(path.join('<%= assets %>', 'config.json')) || grunt.file.readJSON('./defaults.json'),
...
})
当我执行它时,它会抛出:
>> Error: Unable to read "<%= assets %>/config.json" file (Error code: ENOENT).
>> at Object.util.error (/.../prj/node_modules/grunt-legacy-util/index.js:54:39)
>> at Object.file.read (/.../prj/node_modules/grunt/lib/grunt/file.js:247:22)
>> at Object.file.readJSON (/.../prj/node_modules/grunt/lib/grunt/file.js:253:18)
>> at Object.module.exports (/.../prj/Gruntfile.js:10:28)
>> at loadTask (/.../prj/node_modules/grunt/lib/grunt/task.js:325:10)
>> at Task.task.init (/.../prj/node_modules/grunt/lib/grunt/task.js:437:5)
>> at Object.grunt.tasks (/.../prj/node_modules/grunt/lib/grunt.js:120:8)
>> at Object.module.exports [as cli] (/.../prj/node_modules/grunt/lib/grunt/cli.js:38:9)
>> at Object.<anonymous> (/usr/local/lib/node_modules/grunt-cli/bin/grunt:45:20)
>> at Module._compile (module.js:425:26)
想知道这是因为我试图使用它时没有定义assets
var吗?或者是&lt;%=%&gt;语法不允许以这种方式使用?
根据this answer,它看起来应该有效 - 我发现因为之前我只是使用var assets = grunt.option('assets')
,但 正在投掷SyntaxError: Unexpected token var
由于某些原因。 (在我搞砸之前,它看起来像这样:)
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt)
var util = require('util'),
path = require('path'),
pkg = require('./package.json')
var assets = grunt.option('assets'),
var config = grunt.file.readJSON(path.join(assets, 'config.json')) || grunt.file.readJSON('./defaults.json')
grunt.initConfig({
...
})
在这样的gruntfile中使用模块或声明变量的正确,笨拙的方法是什么?和/或,我可以使用Unexpected token var
解决问题吗?
(注意:这不是我在加载时遇到问题的配置文件,而是来自grunt.option()
的资产路径似乎没有被解释)
答案 0 :(得分:1)
好像你想要阅读自定义的json文件。请记住,即使是grunt脚本也只是JavaScript,节点需要正常工作。所以你可以做类似
的事情 var conf = grunt.file.exists(assets + '/ '+ 'config.json') ? require(assets + '/ '+ 'config.json') : {};
然后,您可以在任何地方使用config
变量。
conf.foo || 'default'
conf.bar
在任何一种情况下,您都需要在使用前声明assets
变量。在要求或initConfig
更新
另外,
在var assets = grunt.option('assets'),
之后您有一个额外的逗号删除或删除下一行中的var
答案 1 :(得分:0)
您无法在var assets = ..
Curly大括号内声明grunt.init( {
,因为这不是有效的JS语法。为了理解<%= %>
语法,您需要做的就是声明它:
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
banner: '/*! <%= pkg.name %>'
// pkg is a property on the json object passed into initConfig
...
答案 2 :(得分:0)
<%= %>
是由grunt指定的插值字符串,如果在非grunt参数中使用它,则不会进行插值(例如在path.join中使用它的情况)。
要使它工作,你必须使用
grunt.template.process('<%= asset %>', {
data: {
assets: grunt.option('assets')
}
})