Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/DEVELOPER_DIARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,9 @@
- Added a Node-runnable abstract wall/slab/screen example that turns transformed Three.js triangles into core mesh input, plus an oblique source-scene preview and deterministic README SVGs.
- Kept the Three.js conversion, mesh-feature selection, explicit interface relation, and SVG styling outside the public package API.
- Added adapter-transform and fixture tests, plus CI checks that prevent the generated SVG from becoming stale.

## 2026-07-15: Git-consumable package build

- Added a `prepare` lifecycle that compiles `dist` when the package is installed from an immutable Git commit.
- Kept npm publication disabled; the initial consumers can pin reviewed Git commits while the pre-1.0 API continues to evolve.
- Revalidated typechecking and the test suite before updating the EspooGML consumer.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
},
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"typecheck": "tsc --noEmit -p tsconfig.json",
"typecheck:examples": "tsc --noEmit -p tsconfig.examples.json",
"test": "vitest run",
Expand Down
Loading