@principles/core 1.75.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 +2 -1
- 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/index.d.ts +2 -0
- package/dist/runtime-v2/index.d.ts.map +1 -1
- package/dist/runtime-v2/index.js +2 -0
- package/dist/runtime-v2/index.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
|
@@ -261,6 +261,7 @@ const KNOWN_PLUGIN_CORE_FILES = new Set([
|
|
|
261
261
|
'evolution-engine.ts',
|
|
262
262
|
// ── Runtime V2 ──────────────────────────────────────────────────────────
|
|
263
263
|
'runtime-v2-prompt-activation-reader.ts',
|
|
264
|
+
'workspace-guidance-migrator.ts',
|
|
264
265
|
// ── Test Files ──────────────────────────────────────────────────────────
|
|
265
266
|
'__tests__/focus-history.test.ts',
|
|
266
267
|
'principle-compiler/__tests__/compiler-replay-gate.test.ts',
|
|
@@ -307,7 +308,7 @@ describe('PRI-212 plugin core anti-growth guard', () => {
|
|
|
307
308
|
// Prevents accidental baseline bloat from going unnoticed.
|
|
308
309
|
// See docs/reviews/plugin-core-inventory-2026-05.md §7
|
|
309
310
|
// PRI-286: Removed confirm-first-gate.ts (95 → 94)
|
|
310
|
-
expect(KNOWN_PLUGIN_CORE_FILES.size).toBe(
|
|
311
|
+
expect(KNOWN_PLUGIN_CORE_FILES.size).toBe(95);
|
|
311
312
|
});
|
|
312
313
|
});
|
|
313
314
|
const REQUIRED_TEST_FILES = [
|