Released new patch versions of Transpile and StealTools (Transpile comes with StealTools). Fixes include:
- Better error reporting when there is an error transpiling during the build; now it will tell you the module that caused the error.
- You can use template strings now and it will build correctly. Template strings are supported by all recent browser versions so you can do stuff like:
var name = "world";
console.log(`hello ${name}`);
Previously this would throw an error during the build. This now works with all formats. Only use if you are only supporting modern browsers.