2

我想要一个用于 grunt 的基于令牌的搜索和替换功能。

喜欢

  single:{
                input:"./input.js",
                output:"./output.js",
                tokens:[{
                    token:"$1",
                    file:"./file.js"
                },{
                    token:"%2",
                    string:"replacement string"
                },{
                    token:"!3",
                    file:"./file.txt"
                }]
            },

来自.. grunt-combine https://github.com/mcgaryes/grunt-combine/

这在 grunt .4 版本中不受支持。是否有任何类似的库.. 或者默认情况下没有“concat”方法我们可以这样做吗..?

4

1 回答 1

1

也许您正在寻找类似grunt-replace的东西?

从文档:

replace: {
  dist: {
    options: {
      variables: {
        'key': 'value'
      }
    }
  }
}
于 2013-06-25T16:19:29.827 回答