All Versions
3
Latest Version
Avg Release Cycle
9 days
Latest Release
3158 days ago
Changelog History
Changelog History
-
v0.3.0 Changes
August 27, 2016โ Added
- ๐ Version flag (-v) to CLI
- โ Examples in markdown (also acts as tests)
โ Removed
- ๐ Internal: Removed a lot of specs now covered by markdown examples
๐ Fixed
- Strict flag that was broken in CLI
-
v0.2.0 Changes
August 19, 2016โ Added
- Transpile proc var assignment to function definitions
- Transpile global variables
- Transpile
self
tothis
- Transpile type aliases
- Transpile
is_a?
toinstanceof
- Transpile vars; bool, number and string literals explicitly
- Transpile
case/when
toswitch/case
- Transpile
rescue
tocatch
๐ Changed
- 0๏ธโฃ Strict mode - Enabled by default, CLI will not
allow use of fallback transpilation, but throw an exception. Disable by
passing
--no-strict
to the CLI.
-
v0.1.0 Changes
August 10, 2016โ Added
- ๐ฒ Transpile
p
toconsole.log
- Transpile class structures (constructors, instance variables etc.)
- Transpile variable assignment (using let and const)
- Transpile nil
- Transpile symbols
- Transpile if, unless
- Transpile typed arrays
- Transpile hash to object
๐ [Unreleased]: https://github.com/geppetto-apps/crow/compare/v0.3.0...HEAD
- ๐ฒ Transpile