Skip to content

v2.4.0

Compare
Choose a tag to compare
@GoogleFeud GoogleFeud released this 25 Aug 13:36
· 57 commits to dev since this release

Additions

  • A second experimental transformer, type-resolver, that transpiles your code to typescript with all macros expanded before transpiling it to javascript. This means you can use types or exported values generated by macros in your code!
    • The transformer also works in your editor if you patch the tsserver file with ts-patch.
      show
    • This transformer can only be used with ts-patch.
  • You can now export the variables defined by the $$define macro by passing a fourth parameter.

Changes

  • You can no longer change the name of classes/enums/functions by giving them the same name as a maco parameter, use macro variables from now on:
    function $setPropName(names: string) {
      const $name = $$ident!(names);
      return class $name {
        $test: string = ""
      }
    }
  • Removed the $$getStore and $$setStore built-in macro.
    • Use macro variables instead: const $value = 123;
  • Removed the $$inlineFunc built-in macro.
    • Use the $$inline macro instead.

Bug fixes