livescript-next icon indicating copy to clipboard operation
livescript-next copied to clipboard

Enable latest ES features for LiveScript

Results 11 livescript-next issues
Sort by recently updated
recently updated
newest added

Hello, First of all, thank you very much for this amazing project. It is what LS needs, from my perspective. However, the entry point for a total newcomer is a...

Is this project still active? It's almost perfect for my needs. The only thing it's missing is ES6 classes. Hoping that there is still a bit of momentum here cause...

help wanted

support => , ~> and -> is visually similar, difficult to recognize

Hello, Today I discovered that your library does not support multi line comments. Is this intentional ? Is it a mistake ? Will it be hard to implement ? With...

This is valid livescript regex comparsion: ```ls prod = /production/i != process.env.NODE_ENV ``` Which produces te expected following output: ```js var prod; prod = !/production/i.test(process.env.NODE_ENV) ``` However livescript-next does not...

Hello again, Thank you very much for this awesome project, I'm really enjoying it. It would be awesome if the compiled output contains constants whenever possible. Currently you use let...

Hello, This is probably a problem because how LS compiles to AST. I have been checking and it produces the same AST for normal and curried functions, which is probably...

Use cases: - string comparison (alphabetic ordering) - date comparison - utilizing `valueOf` of objects I can always use `Math.min` in my code if I want, but I cannot simply...

There is no way to set the default ES6 export. `export {x as default}` is not the same as `export default x`.

enhancement
help wanted

Love the work you're doing here. Now that I have commit bits on LiveScript proper, and since gkz has said he'd bless adding an ES6 output mode, I want to...