@principles/core 1.74.0 → 1.75.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/runtime-v2/__tests__/architecture-regression.test.js +3 -3
- package/dist/runtime-v2/__tests__/architecture-regression.test.js.map +1 -1
- package/dist/runtime-v2/activation/index.d.ts +0 -2
- package/dist/runtime-v2/activation/index.d.ts.map +1 -1
- package/dist/runtime-v2/activation/index.js +0 -1
- package/dist/runtime-v2/activation/index.js.map +1 -1
- package/dist/runtime-v2/index.d.ts +4 -4
- package/dist/runtime-v2/index.d.ts.map +1 -1
- package/dist/runtime-v2/index.js +2 -2
- package/dist/runtime-v2/index.js.map +1 -1
- package/dist/runtime-v2/types/event-types.d.ts +3 -24
- package/dist/runtime-v2/types/event-types.d.ts.map +1 -1
- package/dist/runtime-v2/types/event-types.js +0 -10
- package/dist/runtime-v2/types/event-types.js.map +1 -1
- package/package.json +1 -1
- package/dist/runtime-v2/__tests__/sqlite-confirm-first-state-store.test.d.ts +0 -2
- package/dist/runtime-v2/__tests__/sqlite-confirm-first-state-store.test.d.ts.map +0 -1
- package/dist/runtime-v2/__tests__/sqlite-confirm-first-state-store.test.js +0 -148
- package/dist/runtime-v2/__tests__/sqlite-confirm-first-state-store.test.js.map +0 -1
- package/dist/runtime-v2/activation/sqlite-confirm-first-state-store.d.ts +0 -22
- package/dist/runtime-v2/activation/sqlite-confirm-first-state-store.d.ts.map +0 -1
- package/dist/runtime-v2/activation/sqlite-confirm-first-state-store.js +0 -136
- package/dist/runtime-v2/activation/sqlite-confirm-first-state-store.js.map +0 -1
|
@@ -221,7 +221,6 @@ const KNOWN_PLUGIN_CORE_FILES = new Set([
|
|
|
221
221
|
'rule-host-helpers.ts',
|
|
222
222
|
'schema/migrations/001-init-trajectory.ts',
|
|
223
223
|
// ── I/O Boundary ────────────────────────────────────────────────────────
|
|
224
|
-
'confirm-first-gate.ts',
|
|
225
224
|
'trajectory.ts',
|
|
226
225
|
'evolution-reducer.ts',
|
|
227
226
|
'promotion-gate.ts',
|
|
@@ -303,11 +302,12 @@ describe('PRI-212 plugin core anti-growth guard', () => {
|
|
|
303
302
|
expect.fail(msg);
|
|
304
303
|
}
|
|
305
304
|
});
|
|
306
|
-
it('known baseline count is self-consistent (
|
|
305
|
+
it('known baseline count is self-consistent (94 files)', async () => {
|
|
307
306
|
// Sanity check: if the baseline grows, update this number.
|
|
308
307
|
// Prevents accidental baseline bloat from going unnoticed.
|
|
309
308
|
// See docs/reviews/plugin-core-inventory-2026-05.md §7
|
|
310
|
-
|
|
309
|
+
// PRI-286: Removed confirm-first-gate.ts (95 → 94)
|
|
310
|
+
expect(KNOWN_PLUGIN_CORE_FILES.size).toBe(94);
|
|
311
311
|
});
|
|
312
312
|
});
|
|
313
313
|
const REQUIRED_TEST_FILES = [
|