-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathWorkspaceResolver.ts
77 lines (55 loc) Β· 2.48 KB
/
WorkspaceResolver.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import {PortablePath} from '@yarnpkg/fslib';
import {Resolver, ResolveOptions, MinimalResolveOptions} from './Resolver';
import {Descriptor, Locator, Package} from './types';
import {LinkType} from './types';
export class WorkspaceResolver implements Resolver {
static protocol = `workspace:`;
supportsDescriptor(descriptor: Descriptor, opts: MinimalResolveOptions) {
if (descriptor.range.startsWith(WorkspaceResolver.protocol))
return true;
const workspace = opts.project.tryWorkspaceByDescriptor(descriptor);
if (workspace !== null)
return true;
return false;
}
supportsLocator(locator: Locator, opts: MinimalResolveOptions) {
if (!locator.reference.startsWith(WorkspaceResolver.protocol))
return false;
return true;
}
shouldPersistResolution(locator: Locator, opts: MinimalResolveOptions) {
return false;
}
bindDescriptor(descriptor: Descriptor, fromLocator: Locator, opts: MinimalResolveOptions) {
return descriptor;
}
getResolutionDependencies(descriptor: Descriptor, opts: MinimalResolveOptions) {
return {};
}
async getCandidates(descriptor: Descriptor, dependencies: unknown, opts: ResolveOptions) {
const workspace = opts.project.getWorkspaceByDescriptor(descriptor);
return [workspace.anchoredLocator];
}
async getSatisfying(descriptor: Descriptor, dependencies: Record<string, Package>, locators: Array<Locator>, opts: ResolveOptions) {
const [locator] = await this.getCandidates(descriptor, dependencies, opts);
return {
locators: locators.filter(candidate => candidate.locatorHash === locator.locatorHash),
sorted: false,
};
}
async resolve(locator: Locator, opts: ResolveOptions) {
const workspace = opts.project.getWorkspaceByCwd(locator.reference.slice(WorkspaceResolver.protocol.length) as PortablePath);
return {
...locator,
version: workspace.manifest.version || `0.0.0`,
languageName: `unknown`,
linkType: LinkType.SOFT,
conditions: null,
dependencies: opts.project.configuration.normalizeDependencyMap(new Map([...workspace.manifest.dependencies, ...workspace.manifest.devDependencies])),
peerDependencies: new Map([...workspace.manifest.peerDependencies]),
dependenciesMeta: workspace.manifest.dependenciesMeta,
peerDependenciesMeta: workspace.manifest.peerDependenciesMeta,
bin: workspace.manifest.bin,
};
}
}