You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
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.