@component-compass/plugin-core 0.0.0-pr-309-becd8ee-20260707082539 → 0.0.0-pr-321-e2acaca-20260708201617
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,7 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Function type for "where does this import specifier point?" — the single
|
|
3
|
-
* source of truth consumed by
|
|
4
|
-
*
|
|
3
|
+
* source of truth consumed by the lazy resolver and the engine's
|
|
4
|
+
* module-resolution path (graph traversal + bounded definition resolver).
|
|
5
|
+
* Implementation lives in
|
|
5
6
|
* `cli/src/walker/resolve-import.ts` (knows about node-resolve quirks,
|
|
6
7
|
* tsconfig paths, config aliases). Type lives here so plugin-core consumers
|
|
7
8
|
* (ast-utils, parsers) can depend on it without depending on the CLI.
|
package/dist/scan-types.d.ts
CHANGED
|
@@ -230,13 +230,6 @@ export type ParseContext = {
|
|
|
230
230
|
resolveLocalExport: ResolveLocalExport;
|
|
231
231
|
lookupByTag: LookupByTag;
|
|
232
232
|
repoRoot: string;
|
|
233
|
-
/**
|
|
234
|
-
* Set of package names known to belong to the scan's repo (workspace
|
|
235
|
-
* siblings + declared deps). Threaded into `classifyImportOrigin` so
|
|
236
|
-
* specifiers that don't resolve on disk (uninstalled workspace siblings)
|
|
237
|
-
* can still recover external-package identity.
|
|
238
|
-
*/
|
|
239
|
-
knownPackageNames?: ReadonlySet<string>;
|
|
240
233
|
/** Shared diagnostic collector for the scan run. */
|
|
241
234
|
collector?: DiagnosticCollector;
|
|
242
235
|
/**
|