sebdeckers / grunt-rev

:punch: Asset revving for Grunt.js
MIT License
240 stars 54 forks source link

After callback, passing mapping object #9

Open PhilNehaev opened 11 years ago

PhilNehaev commented 11 years ago

I added the ability to call a function and pass it mapping. This will flexible ways to manage output file and to fully own output format.

rev:
  options:
    after: (dirs, mapping, options) ->
      output = {}
      for oldPath, newPath of mapping
        output[path.basename oldPath] = newPath.replace dirs.webapp, ""
      grunt.file.write path.join(dirs.resources, "assetsMap.json"), JSON.stringify(output)