refactor(guardrails): add hotspot budgets and runtime cycle checks

This commit is contained in:
2026-02-21 19:04:50 -08:00
parent 47301d7492
commit 704e664cc3
12 changed files with 409 additions and 18 deletions

View File

@@ -0,0 +1,2 @@
import './utils';
export { value } from './feature';

View File

@@ -0,0 +1,3 @@
import { utilValue } from './utils';
export const value = utilValue + 1;

View File

@@ -0,0 +1 @@
export const utilValue = 1;

View File

@@ -0,0 +1,3 @@
import { b } from './module-b';
export const a = b + 1;

View File

@@ -0,0 +1 @@
export { c as b } from './nested';

View File

@@ -0,0 +1,3 @@
import { a } from '../module-a.ts';
export const c = a + 1;