Closed F21 closed 10 years ago
I am using the raw configuration option to define a custom function for asset_cache_buster:
raw
asset_cache_buster
raw: ['asset_cache_buster do |path, real_path|', 'bunch of code goes here' 'end']
Unfortunately, commas are used to join the various parts of the array, which breaks the generated temp config file:
asset_cache_buster do |path, real_path|,bunch of code goes here,end,
The correct concatenated version should be:
asset_cache_buster do |path, real_path| bunch of code goes here end
https://github.com/gruntjs/grunt-contrib-compass#raw
raw should be a string
I am using the
raw
configuration option to define a custom function forasset_cache_buster
:Unfortunately, commas are used to join the various parts of the array, which breaks the generated temp config file:
The correct concatenated version should be: