@principles/core 1.74.0 → 1.76.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 -2
- package/dist/runtime-v2/__tests__/architecture-regression.test.js.map +1 -1
- package/dist/runtime-v2/__tests__/workspace-guidance-migration.test.d.ts +2 -0
- package/dist/runtime-v2/__tests__/workspace-guidance-migration.test.d.ts.map +1 -0
- package/dist/runtime-v2/__tests__/workspace-guidance-migration.test.js +328 -0
- package/dist/runtime-v2/__tests__/workspace-guidance-migration.test.js.map +1 -0
- 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 +6 -4
- package/dist/runtime-v2/index.d.ts.map +1 -1
- package/dist/runtime-v2/index.js +4 -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/dist/runtime-v2/workspace-guidance-migration.d.ts +12 -0
- package/dist/runtime-v2/workspace-guidance-migration.d.ts.map +1 -0
- package/dist/runtime-v2/workspace-guidance-migration.js +193 -0
- package/dist/runtime-v2/workspace-guidance-migration.js.map +1 -0
- 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',
|
|
@@ -262,6 +261,7 @@ const KNOWN_PLUGIN_CORE_FILES = new Set([
|
|
|
262
261
|
'evolution-engine.ts',
|
|
263
262
|
// ── Runtime V2 ──────────────────────────────────────────────────────────
|
|
264
263
|
'runtime-v2-prompt-activation-reader.ts',
|
|
264
|
+
'workspace-guidance-migrator.ts',
|
|
265
265
|
// ── Test Files ──────────────────────────────────────────────────────────
|
|
266
266
|
'__tests__/focus-history.test.ts',
|
|
267
267
|
'principle-compiler/__tests__/compiler-replay-gate.test.ts',
|
|
@@ -303,10 +303,11 @@ describe('PRI-212 plugin core anti-growth guard', () => {
|
|
|
303
303
|
expect.fail(msg);
|
|
304
304
|
}
|
|
305
305
|
});
|
|
306
|
-
it('known baseline count is self-consistent (
|
|
306
|
+
it('known baseline count is self-consistent (94 files)', async () => {
|
|
307
307
|
// Sanity check: if the baseline grows, update this number.
|
|
308
308
|
// Prevents accidental baseline bloat from going unnoticed.
|
|
309
309
|
// See docs/reviews/plugin-core-inventory-2026-05.md §7
|
|
310
|
+
// PRI-286: Removed confirm-first-gate.ts (95 → 94)
|
|
310
311
|
expect(KNOWN_PLUGIN_CORE_FILES.size).toBe(95);
|
|
311
312
|
});
|
|
312
313
|
});
|