from command line, how to pass a variable to coffeescript, so it can replace a corresponding placeholder, something like this:
$ echo "module.exports = {version: '$VERSION'}" | coffee -p -s VERSION=0.0.0
Expected JS:
(function() {
module.exports = {
version: '0.0.0'
};
}).call(this);
Thank you
coffee.