svelte-shaker 0.5.2 → 0.6.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.
@@ -1,6 +1,6 @@
1
- import { type AnyNode, type Parse, type ParseCache, type Root } from './parse';
2
- import { type AnalyzeInput, type ComponentId, type ComponentPlan, type Literal } from './ir';
3
- import { type Span } from './dead';
1
+ import { type AnyNode, type Parse, type ParseCache, type Root } from './parse.js';
2
+ import { type AnalyzeInput, type ComponentId, type ComponentPlan, type Literal } from './ir.js';
3
+ import { type Span } from './dead.js';
4
4
  export type Resolve = (source: string, importer: ComponentId) => Promise<ComponentId | null> | ComponentId | null;
5
5
  export type ReadFile = (id: ComponentId) => Promise<string> | string;
6
6
  /** One declared prop in a `$props()` destructuring. */