forked from use-global-hook/use-global-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopy-files.js
117 lines (98 loc) · 3.11 KB
/
copy-files.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
const fs = require("fs");
const path = require("path");
const glob = require("glob");
const packagePath = process.cwd();
const buildPath = path.join(packagePath, "./build");
const srcPath = path.join(packagePath, "./src/core");
async function includeFileInBuild(file) {
const sourcePath = path.resolve(packagePath, file);
if (fs.existsSync(sourcePath)) {
const targetPath = path.resolve(buildPath, path.basename(file));
await fs.copyFileSync(sourcePath, targetPath);
console.log(`Copied ${sourcePath} to ${targetPath}`);
}
}
/**
* Puts a package.json into every immediate child directory of rootDir.
* That package.json contains information about esm for bundlers so that imports are tree-shakeable.
*
* @param {string} rootDir
*/
async function createModulePackages({ from, to }) {
const directoryPackages = glob.sync("*/index.js", { cwd: from }).map(path.dirname);
await Promise.all(
directoryPackages.map(async directoryPackage => {
const packageJson = {
sideEffects: false,
module: path.join("../esm", directoryPackage, "index.js"),
};
const packageJsonPath = path.join(to, directoryPackage, "package.json");
await fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 4));
return packageJsonPath;
}),
);
}
async function createPackageFile() {
const packageData = await fs.readFileSync(path.resolve(packagePath, "./package.json"), "utf8");
const { nyc, scripts, devDependencies, workspaces, ...packageDataOther } = JSON.parse(
packageData,
);
const newPackageData = {
...packageDataOther,
private: false,
main: "./cjs/index.js",
module: "./esm/index.js",
};
const targetPath = path.resolve(buildPath, "./package.json");
await fs.writeFileSync(targetPath, JSON.stringify(newPackageData, null, 4), "utf8");
console.log(`Created package.json in ${targetPath}`);
return newPackageData;
}
async function prepend(file, string) {
const data = await fs.readFileSync(file, "utf8");
await fs.writeFileSync(file, string + data, "utf8");
}
async function addLicense(packageData) {
const license = `/** @license UseGlobalHook v${packageData.version}
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*/
`;
await Promise.all(
[
"./cjs/index.js",
"./esm/index.js",
"./umd/use-global-hook.js",
"./umd/use-global-hook.min.js",
].map(async file => {
try {
await prepend(path.resolve(buildPath, file), license);
} catch (err) {
if (err.code === "ENOENT") {
console.log(`Skipped license for ${file}`);
} else {
throw err;
}
}
}),
);
}
async function run() {
try {
const packageData = await createPackageFile();
await Promise.all(
[
"./README.md",
"./CHANGELOG.md",
"./LICENSE.md",
].map(file => includeFileInBuild(file)),
);
await addLicense(packageData);
await createModulePackages({ from: srcPath, to: buildPath });
} catch (err) {
console.error(err);
process.exit(1);
}
}
run();