Skip to content

v0.3.0

Compare
Choose a tag to compare
@antfu antfu released this 17 Jan 06:33
· 148 commits to master since this release

BREAKING CHANGE: compile API change

As we mentioned in the v0.2.0 release, the support of using lang as the first argument of compile is now REMOVED. Please use the new API instead.

// before
compile('js', source, { ... })
// after
compile(source, { lang: 'js', ... })

New Online IDE

The fresh new Online IDE is now landed. With file explorer, rendering, a better editor, auto-complete, wyg support, dark mode and more. Please do check it out! (PR #515 #526 #535 #536 #537 #546 #551 #552)


We are now moved to Typescript!

We have rewritten our codebase to Typescript. The typing declaration file is also shipped in @wanyanlang/core.

Check out for #543 for more details.

Features

  • Importing nested modules structure is now landed (PR #534, thanks @antfu)

Fixes

Stdlib

Tests

Examples