-
-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathutils.js
93 lines (83 loc) · 2.22 KB
/
utils.js
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
const fsp = require("fs").promises;
const path = require("path");
const { execSync } = require("child_process");
const jsonfile = require("jsonfile");
const { ROOT_DIR, EXAMPLES_DIR } = require("./constants");
/**
* @param {string} packageName
* @param {string} [directory]
* @returns {string}
*/
function packageJson(packageName, directory) {
return path.join(ROOT_DIR, directory, packageName, "package.json");
}
/**
* @param {string} packageName
* @returns {Promise<string | undefined>}
*/
async function getPackageVersion(packageName) {
let file = packageJson(packageName, "packages");
let json = await jsonfile.readFile(file);
return json.version;
}
/**
* @returns {void}
*/
function ensureCleanWorkingDirectory() {
let status = execSync(`git status --porcelain`).toString().trim();
let lines = status.split("\n");
invariant(
lines.every((line) => line === "" || line.startsWith("?")),
"Working directory is not clean. Please commit or stash your changes."
);
}
/**
* @param {string} packageName
* @param {(json: import('type-fest').PackageJson) => any} transform
*/
async function updatePackageConfig(packageName, transform) {
let file = packageJson(packageName, "packages");
let json = await jsonfile.readFile(file);
transform(json);
await jsonfile.writeFile(file, json, { spaces: 2 });
}
/**
* @param {string} example
* @param {(json: import('type-fest').PackageJson) => any} transform
*/
async function updateExamplesPackageConfig(example, transform) {
let file = path.join(EXAMPLES_DIR, example, "package.json");
if (!(await fileExists(file))) return;
let json = await jsonfile.readFile(file);
transform(json);
await jsonfile.writeFile(file, json, { spaces: 2 });
}
/**
* @param {string} filePath
* @returns {Promise<boolean>}
*/
async function fileExists(filePath) {
try {
await fsp.stat(filePath);
return true;
} catch (_) {
return false;
}
}
/**
* @param {*} cond
* @param {string} message
* @returns {asserts cond}
*/
function invariant(cond, message) {
if (!cond) throw new Error(message);
}
module.exports = {
fileExists,
packageJson,
getPackageVersion,
ensureCleanWorkingDirectory,
invariant,
updatePackageConfig,
updateExamplesPackageConfig,
};