Skip to content

Remove stray generated .d.ts committed under hypaware-core - #186

Merged
platypii merged 1 commit into
masterfrom
cleanup-stray-dts
Jun 28, 2026
Merged

Remove stray generated .d.ts committed under hypaware-core#186
platypii merged 1 commit into
masterfrom
cleanup-stray-dts

Conversation

@platypii

Copy link
Copy Markdown
Contributor

blob-io.d.ts and maintenance.d.ts were accidentally committed in #185. They were emitted in-place by an early rootDir=src declaration-build experiment (those hypaware-core modules fell outside the emit root, so tsc wrote .d.ts next to the source), then swept in by git add -A. They shadow the JSDoc and are build cruft, not source.

The shipped build emits only to types/, and with the core_commands dynamic import indirected, the build no longer pulls these hypaware-core modules into the src emit. Removing them is safe: typecheck, build:types (does not regenerate them), and npm test (1473 pass) all stay green.

blob-io.d.ts and maintenance.d.ts were emitted in-place by an early
rootDir=src declaration-build experiment (those hypaware-core modules fell
outside the emit root, so tsc wrote their declarations next to the source) and
got swept into #185 by git add -A. They shadow the JSDoc and are build cruft.
The shipped build emits only to types/ and, with the core_commands dynamic
import indirected, no longer pulls these hypaware-core modules into the src
emit, so removing them is safe: typecheck, build:types (does not regenerate
them), and tests (1473 pass) all stay green.
@platypii
platypii merged commit aef29c4 into masterJun 28, 2026
6 checks passed
@platypii
platypii deleted the cleanup-stray-dts branch June 28, 2026 22:32
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@platypii