yocontra / node-linq

LINQ for node
http://wearefractal.com/
MIT License
77 stars 7 forks source link

Coffee Script now requires registration #7

Closed achmelik closed 9 years ago

achmelik commented 9 years ago

See: https://github.com/jashkenas/coffeescript/issues/3349

As of the coffee 1.7.0 changelog registration of CoffeeScript is required. I was able to correct the error by altering the index.js file to the following:

var CoffeeScript = require('coffee-script'); CoffeeScript.register(); module.exports = require('./lib/main');

yocontra commented 9 years ago

Published