-
Notifications
You must be signed in to change notification settings - Fork 18
/
main.ts
181 lines (158 loc) · 4.66 KB
/
main.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
// deno -A main.ts deps.ts --test="deno test"
import { colors, expandGlob, parseArgs } from "./deps.ts";
import { udd, UddOptions, UddResult } from "./mod.ts";
import { DenoLand } from "./registry.ts";
function testsThunk(tests: string[]): () => Promise<void> {
return async () => {
for (const t of tests) {
// FIXME is there a better way to split / pass arrays?
// This fails if you wanted to pass e.g. --foo="a b"
const p = Deno.run({
cmd: t.split(" "),
stdout: "piped",
stderr: "piped",
});
const success = (await p.status()).success;
if (!success) {
console.log();
await Deno.stdout.write(await p.stderrOutput());
}
// This close handling cleans up resouces but is not required...
p.close();
p.stdout!.close();
p.stderr!.close();
if (!success) {
throw new Error(t);
}
}
};
}
function help() {
console.log(`usage: udd [-h] [--dry-run] [--test TEST] file [file ...]
udd: Update Deno Dependencies
Positional arguments:
file \tfiles to update dependencies
Optional arguments:
-h, --help \tshow this help text
--dry-run \ttest what dependencies can be updated
--test TEST\tcommand to run after each dependency update e.g. "deno test"
--upgrade \tupdate udd to the latest version
--version \tprint the version of udd`);
}
function version() {
// FIXME this might be kinda a hacky way to do it...
const u = new DenoLand(import.meta.url);
try {
console.log(u.version());
} catch (e) {
console.error(e);
}
}
// https://github.com/jurassiscripts/velociraptor/blob/971b7db71cf635b0c8f2de822aa4270e52cce498/src/util.ts#L22-L39
async function spawn(args: string[], cwd?: string): Promise<string> {
const process = Deno.run({
cmd: args,
cwd,
stdout: "piped",
stderr: "piped",
});
const { code } = await process.status();
if (code === 0) {
const rawOutput = await process.output();
process.close();
return new TextDecoder().decode(rawOutput);
} else {
const error = new TextDecoder().decode(await process.stderrOutput());
process.close();
throw new Error(error);
}
}
async function upgrade() {
const u = new DenoLand("https://deno.land/x/[email protected]/main.ts");
const latestVersion = (await u.all())[0];
const url = u.at(latestVersion).url;
console.log(url);
// TODO support alternative name to udd if that's what's been used before.
await spawn([Deno.execPath(), "install", "--reload", "-qAfn", "udd", url]);
}
async function main(args: string[]) {
const a = parseArgs(args, {
boolean: ["dry-run", "h", "help", "upgrade", "version"],
});
if (a.h || a.help) {
return help();
}
if (a.upgrade) {
return await upgrade();
}
if (a.version) {
return version();
}
const depFiles: string[] = [];
for (const arg of a._.map((x) => x.toString())) {
for await (const file of expandGlob(arg)) {
depFiles.push(file.path);
}
}
if (depFiles.length === 0) {
help();
Deno.exit(1);
}
let tests: string[] = [];
if (a.test instanceof Array) {
tests = a.test;
} else if (a.test) {
tests = [a.test as string];
}
const thunk = testsThunk(tests);
try {
await thunk();
} catch {
console.error(
colors.red("Tests failed prior to updating any dependencies"),
);
Deno.exit(1);
}
// TODO verbosity/quiet argument?
const options: UddOptions = { dryRun: a["dry-run"], test: thunk };
const results: UddResult[] = [];
for (const [i, fn] of depFiles.entries()) {
if (i !== 0) console.log();
console.log(colors.yellow(fn));
results.push(...await udd(fn, options));
}
// TODO perhaps a table would be a nicer output?
const alreadyLatest = results.filter((x) => x.message === undefined);
if (alreadyLatest.length > 0) {
console.log(colors.bold("\nAlready latest version:"));
for (const a of alreadyLatest) {
console.log(colors.dim(a.initUrl), "==", a.initVersion);
}
}
const successes = results.filter((x) => x.success === true);
if (successes.length > 0) {
console.log(
colors.bold(
options.dryRun ? "\nAble to update:" : "\nSuccessfully updated:",
),
);
for (const s of successes) {
console.log(colors.green(s.initUrl), s.initVersion, "->", s.message);
}
}
const failures = results.filter((x) => x.success === false);
if (failures.length > 0) {
console.log(
colors.bold(
options.dryRun ? "\nUnable to update:" : "\nFailed to update:",
),
);
for (const f of failures) {
console.log(colors.red(f.initUrl), f.initVersion, "->", f.message);
}
Deno.exit(1);
}
}
if (import.meta.main) {
await main(Deno.args);
}