-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.ts
281 lines (256 loc) · 8.1 KB
/
cli.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
import { colors, delay, log, semver, step } from "./deps.ts";
import { Command, EnumType } from "./deps.ts";
import type { ReleaseConfig } from "./config.ts";
import { fetchRepo, type Repo } from "./src/repo.ts";
import { ezgit } from "./src/git.ts";
// Plugins
import github from "./plugins/github/mod.ts";
import changelog from "./plugins/changelog/mod.ts";
import regex from "./plugins/regex/mod.ts";
import versionFile from "./plugins/versionFile/mod.ts";
import config from "./deno.json" with { type: "json" };
import type { ReleasePlugin } from "./plugin.ts";
import { initLogger } from "./src/log.ts";
const version = config.version;
export type ReleaseType =
| "patch"
| "minor"
| "major"
| "prepatch"
| "preminor"
| "premajor"
| "prerelease";
const release_type: ReleaseType[] = [
"patch",
"minor",
"major",
"prepatch",
"preminor",
"premajor",
"premajor",
"prerelease",
];
const DEFAULT_CONFIG_PATH = ".release_up.json";
await new Command()
.name("release_up")
.version(version)
.description(`
Automate semver releases.
Example: release_up major --github
Release type:
* patch ${colors.dim("eg: 1.2.3 -> 1.2.4")}
* minor ${colors.dim("eg: 1.2.3 -> 1.3.0")}
* major ${colors.dim("eg: 1.2.3 -> 2.0.0")}
* prepatch <name> ${colors.dim("eg: 1.2.3 -> 1.2.4-canary.0")}
* preminor <name> ${colors.dim("eg: 1.2.3 -> 1.3.0-canary.0")}
* premajor <name> ${colors.dim("eg: 1.2.3 -> 2.0.0-canary.0")}
* prerelease <name> ${colors.dim("eg: 1.2.3-name.0 -> 1.2.3-canary.1")}
name optional argument will replace 'canary'`)
.type("semver", new EnumType(release_type))
.arguments("<release_type:semver> [name:string]")
.option("--config <config_path>", "Define the path of the config.", {
default: `${DEFAULT_CONFIG_PATH}`,
})
.option("--github", "Enable Github plugin.")
.option("--changelog", "Enable Changelog plugin.")
.option("--versionFile", "Enable VersionFile plugin.")
.option(
"--regex <file_and_pattern:string>",
"Enable the Regex plugin. The regex argument is of format filepath:::regex eg: --regex 'README.md:::(?<=@)(.*)(?=\/cli)'. --regex can be specified multiple times.",
{ collect: true },
)
.option("--dry", "Dry run, Does not commit any changes.")
.option("--allowUncommitted", "Allow uncommited change in the repo.")
.option("--debug", "Enable debug logging.")
.action(async (opts, release_type, name) => {
initLogger(opts.debug);
log.debug(opts, release_type, name);
let suffix: string | undefined = undefined;
if (
["prepatch", "preminor", "premajor", "prerelease"].includes(release_type)
) {
suffix = (name as string | undefined) ?? "canary";
}
// Load config, if any
let config: ReleaseConfig<unknown> = { options: opts };
try {
config = {
...(JSON.parse(Deno.readTextFileSync(opts.config))),
...config,
};
// deno-lint-ignore no-explicit-any
} catch (err: any) {
if (err.code === "ENOENT" && opts.config !== DEFAULT_CONFIG_PATH) {
log.error(`Cannot find config file at ${opts.config}`);
Deno.exit(1);
}
if (err.code !== "ENOENT") {
log.error(`error parsing the config file at ${opts.config}`);
log.error(err);
Deno.exit(1);
}
}
// Enable Plugins
// deno-lint-ignore no-explicit-any
const pluginsList: any = {};
// Enable from cli flags
if (opts.github) pluginsList.github = github;
if (opts.changelog) pluginsList.changelog = changelog;
if (opts.regex) {
pluginsList.regex = regex;
const regs = opts.regex?.map((s) => {
const cf = s.split(":::");
if (cf.length === 1) {
// assume it is readme
return {
file: "README.md",
patterns: [cf[0]],
};
} else {
return {
file: cf[0],
patterns: [cf[1]],
};
}
});
// deno-lint-ignore no-explicit-any
(config as any).regex = regs;
}
if (opts.versionFile) pluginsList.versionFile = versionFile;
// Enable Plugins from config
for (const [key, val] of Object.entries(config)) {
if (key === "options") continue;
if (key === "github" && !pluginsList.github) pluginsList.github = github;
else if (key === "changelog" && !pluginsList.changelog) {
pluginsList.changelog = changelog;
} else if (key === "regex") pluginsList.regex = regex;
else if (key === "versionFile" && !pluginsList.versionFile) {
pluginsList.versionFile = versionFile;
} else {
const def = val as { path: string };
if (!def.path) throw Error(`Invalid config entry ${key}, ${val}`);
const remotePlugin = await import(def.path);
pluginsList.key = remotePlugin.default;
}
}
// deno-lint-ignore no-explicit-any
const plugins: ReleasePlugin<any>[] = Object.values(pluginsList);
log.debug(`plugins loaded: ${plugins.map((p) => p.name).join(", ")}`);
// Setup Plugins
for (const plugin of plugins) {
if (!plugin.setup) continue;
try {
await plugin.setup(log);
} catch (err) {
log.critical(err);
Deno.exit(1);
}
}
// Load Repo
const fetch = step("Loading project info").start();
let repo: Repo;
try {
repo = await fetchRepo(Deno.cwd());
} catch (err) {
console.log(err);
fetch.fail();
log.critical(err);
Deno.exit(1);
}
fetch.succeed("Project loaded correctly");
const [latest] = repo.tags;
const from = latest ? latest.version : "0.0.0";
const to = semver.increment(semver.parse(from), release_type, {
build: suffix,
});
const integrity = step("Checking the project").start();
await delay(1000);
if (repo.status.raw.length !== 0) {
if (opts.allowUncommitted) {
console.log(
"Uncommitted changes on your repository - allowUncommitted is true passing... ",
);
} else {
integrity.fail("Uncommitted changes on your repository!");
Deno.exit(1);
}
} else if (!repo.commits.some((_) => _.belongs === null)) {
integrity.fail("No changes since the last release!");
Deno.exit(1);
}
integrity.succeed("Project check successful");
// Precommit
for (const plugin of plugins) {
if (!plugin.preCommit) continue;
try {
log.debug(`Executing preCommit ${plugin.name}`);
await plugin.preCommit(
repo,
release_type,
from,
semver.format(to),
config,
log,
);
} catch (err) {
log.critical(err);
Deno.exit(1);
}
}
try {
repo = await fetchRepo(Deno.cwd());
} catch (err) {
log.critical(err);
Deno.exit(1);
}
const bump = step(
`Releasing ${colors.bold(semver.format(to))} ${
colors.dim(`(latest was ${from})`)
}`,
).start();
if (!opts.dry) {
try {
ezgit(repo.path, "add -A");
ezgit(repo.path, [
"commit",
"--allow-empty",
"--message",
`chore: release ${semver.format(to)}`,
]);
ezgit(repo.path, `tag ${semver.format(to)}`);
ezgit(repo.path, "push");
ezgit(repo.path, "push --tags");
} catch (err) {
bump.fail(`Unable to release ${colors.bold(semver.format(to))}\n`);
log.critical(err);
Deno.exit(1);
}
bump.succeed(`Released ${colors.bold(semver.format(to))}!`);
} else {
bump.warn(
`Skipping release ${colors.bold(semver.format(to))} ${
colors.dim(
`(latest was ${from})`,
)
}`,
);
}
for (const plugin of plugins) {
if (!plugin.postCommit) continue;
try {
log.debug(`Executing postCommit ${plugin.name}`);
await plugin.postCommit(
repo,
release_type,
from,
semver.format(to),
config,
log,
);
} catch (err) {
log.critical(err);
Deno.exit(1);
}
}
})
.parse(Deno.args);