Skip to content

v0.2.1

Choose a tag to compare

@fchazarreta-bs fchazarreta-bs released this 08 Jul 11:33
3fb0b3c

Fixed

  • b6p push no longer fails its pre-flight TypeScript compile with File 'lib.esnext.d.ts' not found
    (cascading into Cannot find global type 'Array') in the bundled npm CLI and the standalone
    binaries. TypeScript's default host resolves its standard library relative to __filename, which
    once bundled points inside the bundle where no lib.*.d.ts exist. The CLI now ships the full
    TypeScript lib set — copied next to the npm bundle and embedded in (then extracted from) the SEA
    binary — and hands it to the core via providers.typescriptLibDirs.
    (#4)

Changed

  • Bumped @bluestep-systems/b6p-core to ^0.2.0, which adds the typescriptLibDirs provider and the
    TsLibResolver that consumes it.