gruntjs – Grunt:在任务配置中获取当前文件名

在配置我的任务时,我想使用当前文件名,任务在任务选项对象中作为模板变量工作.例如,在选项[‘wrap-start’]中:

swig_compile: {
  temptarget: {
    options: {
      'wrap-start': 'var <%= CURRENT.FILE.NAME %> = function {', //I want the current file name as function name here 
      'wrap-end': '};'
    },
    files: {
      '<%= config.app %>/scripts/tempcompiled.js': ['<%= config.app %>/templates/*.swig']
    }
  }
}

最佳答案 根据
grunt-swig-compile sources,没有这样的功能. options [‘wrap-start’]按原样连接到结果.

您可以分叉/复制grunt-swig-compile源,只需添加一个替换您的模式(例如<%= file_name%>)和path.basename(filepath) in options [‘wrap-start’].

点赞