Hey, would it be possible to add? CSON is basically just CoffeeScript, but there is only actual object literal. Instead of...
module.exports = (grunt) ->
server :
options :
port : 9999
keepalive : false
hostname : 'localhost'
There would be just...
server :
options :
port : 9999
keepalive : false
hostname : 'localhost'
I know it isn't much, but we are using CSON basically everywhere and having it in here would make it consistent. I might be able to add it by myself with pull request. Just want to know if you are fond of merging in such feature.
Hey, would it be possible to add? CSON is basically just CoffeeScript, but there is only actual object literal. Instead of...
There would be just...
I know it isn't much, but we are using CSON basically everywhere and having it in here would make it consistent. I might be able to add it by myself with pull request. Just want to know if you are fond of merging in such feature.