jandre / always-tail

node module for always tailing a file -- recovers gracefully if it gets moved, deleted, or rolled-over.
56 stars 17 forks source link

Can we have the index.coffee that produces index.js? #9

Open longloop opened 9 years ago

longloop commented 9 years ago

Hi! It seems that index.js is an output of some coffee script. I was wondering if you are open to share that original coffee script?

Thanks

bgotink commented 9 years ago

The js file is a heavily modified version of node-tail, which is written in coffeescript (cf its source file).

The main javascript file here is missing some of the features of coffeescript though, e.g. pre-hoisted variables and having every single function return a value. This leads me to believe the author copied the transpiled node-tail javascript file rather than modifying it's coffeescript file and comitting the transpiled result to GitHub.

jandre commented 7 years ago

correct that is what I did. I don't write coffeescript