-
Notifications
You must be signed in to change notification settings - Fork 20
/
get-changed-packages.ts
198 lines (181 loc) · 5.19 KB
/
get-changed-packages.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
import nodePath from "path";
import micromatch from "micromatch";
import { ProbotOctokit } from "probot";
import fetch from "node-fetch";
import { safeLoad } from "js-yaml";
import { Packages, Tool } from "@manypkg/get-packages";
import assembleReleasePlan from "@changesets/assemble-release-plan";
import { parse as parseConfig } from "@changesets/config";
import { PreState, NewChangeset } from "@changesets/types";
import parseChangeset from "@changesets/parse";
export let getChangedPackages = async ({
owner,
repo,
ref,
changedFiles: changedFilesPromise,
octokit,
installationToken,
}: {
owner: string;
repo: string;
ref: string;
changedFiles: string[] | Promise<string[]>;
octokit: InstanceType<typeof ProbotOctokit>;
installationToken: string;
}) => {
let hasErrored = false;
let encodedCredentials = Buffer.from(
`x-access-token:${installationToken}`
).toString("base64");
function fetchFile(path: string) {
return fetch(
`https://raw.githubusercontent.com/${owner}/${repo}/${ref}/${path}`,
{
headers: {
Authorization: `Basic ${encodedCredentials}`,
},
}
);
}
function fetchJsonFile(path: string) {
return fetchFile(path)
.then((x) => x.json())
.catch((err) => {
hasErrored = true;
console.error(err);
return {};
});
}
function fetchTextFile(path: string) {
return fetchFile(path)
.then((x) => x.text())
.catch((err) => {
hasErrored = true;
console.error(err);
return "";
});
}
async function getPackage(pkgPath: string) {
let jsonContent = await fetchJsonFile(pkgPath + "/package.json");
return {
packageJson: jsonContent,
dir: pkgPath,
};
}
let rootPackageJsonContentsPromise = fetchJsonFile("package.json");
let configPromise: Promise<any> = fetchJsonFile(".changeset/config.json");
let tree = await octokit.git.getTree({
owner,
repo,
recursive: "1",
tree_sha: ref,
});
let preStatePromise: Promise<PreState> | undefined;
let changesetPromises: Promise<NewChangeset>[] = [];
let potentialWorkspaceDirectories: string[] = [];
let isPnpm = false;
let changedFiles = await changedFilesPromise;
for (let item of tree.data.tree) {
if (!item.path) continue;
if (item.path.endsWith("/package.json")) {
let dirPath = nodePath.dirname(item.path);
potentialWorkspaceDirectories.push(dirPath);
} else if (item.path === "pnpm-workspace.yaml") {
isPnpm = true;
} else if (item.path === ".changeset/pre.json") {
preStatePromise = fetchJsonFile(".changeset/pre.json");
} else if (
item.path !== ".changeset/README.md" &&
item.path.startsWith(".changeset") &&
item.path.endsWith(".md") &&
changedFiles.includes(item.path)
) {
let res = /\.changeset\/([^\.]+)\.md/.exec(item.path);
if (!res) {
throw new Error("could not get name from changeset filename");
}
let id = res[1];
changesetPromises.push(
fetchTextFile(item.path).then((text) => {
return { ...parseChangeset(text), id };
})
);
}
}
let tool:
| {
tool: Tool;
globs: string[];
}
| undefined;
if (isPnpm) {
tool = {
tool: "pnpm",
globs: safeLoad(await fetchTextFile("pnpm-workspace.yaml")).packages,
};
} else {
let rootPackageJsonContent = await rootPackageJsonContentsPromise;
if (rootPackageJsonContent.workspaces) {
if (!Array.isArray(rootPackageJsonContent.workspaces)) {
tool = {
tool: "yarn",
globs: rootPackageJsonContent.workspaces.packages,
};
} else {
tool = {
tool: "yarn",
globs: rootPackageJsonContent.workspaces,
};
}
} else if (
rootPackageJsonContent.bolt &&
rootPackageJsonContent.bolt.workspaces
) {
tool = {
tool: "bolt",
globs: rootPackageJsonContent.bolt.workspaces,
};
}
}
let rootPackageJsonContent = await rootPackageJsonContentsPromise;
let packages: Packages = {
root: {
dir: "/",
packageJson: rootPackageJsonContent,
},
tool: tool ? tool.tool : "root",
packages: [],
};
if (tool) {
if (
!Array.isArray(tool.globs) ||
!tool.globs.every((x) => typeof x === "string")
) {
throw new Error("globs are not valid: " + JSON.stringify(tool.globs));
}
let matches = micromatch(potentialWorkspaceDirectories, tool.globs);
packages.packages = await Promise.all(
matches.map((dir) => getPackage(dir))
);
} else {
packages.packages.push(packages.root);
}
if (hasErrored) {
throw new Error("an error occurred when fetching files");
}
const releasePlan = assembleReleasePlan(
await Promise.all(changesetPromises),
packages,
await configPromise.then((rawConfig) => parseConfig(rawConfig, packages)),
await preStatePromise
);
return {
changedPackages: (packages.tool === "root"
? packages.packages
: packages.packages.filter((pkg) =>
changedFiles.some((changedFile) => changedFile.startsWith(`${pkg.dir}/`))
)
).map((x) => x.packageJson.name),
releasePlan,
};
};