-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscaffold.ts
39 lines (33 loc) · 855 Bytes
/
scaffold.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
import { mkdirSync, writeFileSync } from "fs";
import { dayString } from "./input";
const year = process.argv[2];
const day = process.argv[3];
if (!year || !day) {
console.log(" Invalid input.\n", " Usage: npm run scaffold -- $year $day");
} else {
const dir = `${year}/${dayString(day)}`;
mkdirSync(`${dir}`, { recursive: true });
write(`${dir}/README.md`, "");
write(`${dir}/test`, "");
write(`${dir}/input`, "");
write(
`${dir}/utils.ts`,
`import { read } from "../../utils/input";
export function getData() {
return read(${year}, ${day});
}
`
);
write(
`${dir}/part1.ts`,
`import { getData } from "./utils";
console.log(getData());
`
);
write(`${dir}/part2.ts`, "");
}
function write(filename: string, contents: string) {
try {
writeFileSync(filename, contents, { flag: "wx" });
} catch (_) {}
}