Results 99 comments of James Campos

a new version has been published, and some new developments are planned

yeah images should be better handled

function keys, eg f1-f12+ from the readme: > Type any function key (eg F1) to see the keybinds. i suppose this should be in the help output as well

in my new projects i use [babel](https://github.com/babel/babel) and make (instead of grunt)

make automatically does that, looks at timestamps to figure out what needs compiling

makefile tutorial: https://gist.github.com/isaacs/62a2d1825d04437c6f08

there's a coffee -> es6 convervter: https://github.com/decaffeinate/decaffeinate. it fails easily, but it should help.

i mean isn't there already a system where coffee and js get combined?

> I suspect some stuff will still have to be handled manually more like, some stuff might not need too much manual handling we're already at the point where native...

you'll convert from your custom template syntax to template literals i assume? also you could think about embracing the es6 module system, instead of making everything global. [rollup](https://github.com/rollup/rollup) is the...