BuckleScript

BuckleScript

  • Docs
  • Try
  • API
  • Community
  • Blog
  • Languages iconEnglish
    • 日本語
    • Español
    • Français
    • 한국어
    • Português (Brasil)
    • Русский
    • 中文
    • 繁體中文
    • Help Translate
  • GitHub

›Recent Posts

Recent Posts

  • A story of exception encoding in BuckleScript
  • What's new in release 7.3
  • Generalized uncurry support in BuckleScript 7.3
  • Announcing bs-platform 7.2
  • Loading stdlib from memory

bs-platform release v5

March 21, 2019

bs-platform@5.0.0 is released! There are quite a few bug fixes in this release and refmt is synced up, a detailed list of changes is available here.

Several new features are introduced in this release:

  • first class bs.variadic support, documented here

  • we prebuilt binaries for Windows, MacOS and Linux, this will help reduce your CI build time significantly. For exotic OSes, it will fall back to build from source

  • bs.deriving light config. For people who prefer short names, we make it configurable

type t = {
    x : int
} [@@bs.deriving {abstract = light}]

let f (obj : t) = obj |. x 

This is the last major release which is targeting OCaml 4.02.3, in the future we will make major releases targeting OCaml 4.06.

Happy Hacking!

Recent Posts