CoffeeScript loader plugin by darwin

79322c2ed80c2d722de8c9d0475198a0?size=52
# CoffeeScript = require 'coffee-script'
for m in module.parent.children
  path = m.id.split("/")
  last = path[path.length-1]
  if last == "coffee-script.js"
    CoffeeScript = m.exports
    break

CoffeeScript.on 'success', (task) ->
  task.output = """
    // The MIT License
    // Copyright (c) #{ new Date().getFullYear() } Your Name\n
   """ + task.output

#coffescript