Skip to content

FableRelease

type FableRelease =
    | Pinned of standalone: string * metadata: string
    | Latest
AssemblyNacara.Plugin.LiveExample

Which build of the Fable compiler a site's snippets are compiled by.

A pair: the packages declare no dependency on each other, but the compiler holds a list of the assemblies it expects and the metadata package has to ship them.

Latest asks npm at every build, so two builds of the same commit can differ. What it picked is logged.

Cases

Pinned of standalone: string * metadata: string

A pair that was released and tried together.

Latest

Whatever npm calls latest, asked for when the site is built.

Properties

member IsLatest: bool
member IsPinned: bool