mirror of
https://github.com/EvoMap/evolver.git
synced 2026-09-18 21:47:53 +08:00
1.7 KiB
1.7 KiB
Summary
Short 1-2 sentence summary of the change.
What changed
- Bullet list of changes
How to test
- Copy commands
- Expected output
Risk
Low / Medium / High -- note if it touches infra or public API.
Self-check
Tick only the boxes that apply, but every applicable box must be ticked. Bugbot reads the project rules and will request changes if anything below is missing.
- If this PR adds a new source file under
src/, it is registered inpublic.manifest.jsonconsistently with its sibling files (e.g. listed inobfuscatewhen the rest of the directory is). Build verification passed:node scripts/build_public.jssucceeded and the new file shows up indist-public/in the expected (obfuscated or plain) form. - If this PR adds or modifies a schema factory under
src/gep/schemas/, the correspondingvalidate*function is invoked at every write and every publish call site (not just defined). - If this PR uses
Object.assign({}, DEFAULTS, partial)to build an object, every reference-typed field (arrays, sub-objects) on the result is sliced or cloned -- not held by reference to either source. - If this PR introduces a new module-level constant initialized from
process.env.X, the owning module is loaded after the entry point's dotenv configuration step (or the constant is migrated to the lazy env helpers insrc/config.js). - No new runtime dependencies added without a clear justification in the "What changed" section above.
- Tests added or updated to cover the new behavior; full suite passes
locally (
node --test test/*.test.js).
Related
Closes #NN