-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
publish.js
181 lines (144 loc) · 4.3 KB
/
publish.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
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
/**
* This script is used to publish this package on the npm registry.
*
* A custom script is used to only distribute source, README and
* license files, while maintaining the desired import paths.
*
* This is not possible otherwise.
*/
const IS_WINDOWS = process.platform === "win32";
const fs = require("fs-extra");
const path = require("path");
const spawnAsync = require("@expo/spawn-async");
const prompt = require("prompt-sync")();
async function divider(text) {
const chalk = (await import("chalk")).default;
console.log(
chalk.gray(`----`),
chalk.blue.bold(text.toUpperCase()),
chalk.gray(`----`),
);
}
function getLocalPath(pathFromRoot) {
return path.join(__dirname, pathFromRoot);
}
const tempFolder = getLocalPath("publish-tmp");
const buildFolder = getLocalPath("lib");
async function cleanUp() {
const ora = (await import("ora")).oraPromise;
if (fs.existsSync(tempFolder)) {
const rm = fs.rm(tempFolder, { recursive: true, force: true });
ora(rm, "Removing temp directory");
await rm;
}
if (fs.existsSync(buildFolder)) {
const rm = fs.rm(buildFolder, { recursive: true, force: true });
ora(rm, "Removing build directory");
await rm;
}
}
async function main() {
const ora = (await import("ora")).oraPromise;
const oraNorm = (await import("ora")).default;
const spinner = oraNorm("Initialising").start();
spinner.succeed();
await divider("Clean up previous");
await cleanUp();
await divider("Preparation");
const mkTempDir = fs.mkdir(tempFolder);
ora(mkTempDir, "Creating temporary directory");
await mkTempDir;
await divider("Build");
const build = spawnAsync(IS_WINDOWS ? "yarn.cmd" : "yarn", ["build"]);
ora(build, "Transpiling Typescript");
await build;
const copyBuild = fs.copy(buildFolder, tempFolder, {
recursive: true,
overwrite: true,
});
ora(copyBuild, "Copying transpiled code to temp folder");
await copyBuild;
await divider("Meta tasks");
const copyReadme = fs.copyFile(
getLocalPath("README.md"),
path.join(tempFolder, "README.md"),
);
const copyLicense = fs.copyFile(
getLocalPath("LICENSE"),
path.join(tempFolder, "LICENSE"),
);
const copyPackageJson = fs.copyFile(
getLocalPath("package.json"),
path.join(tempFolder, "package.json"),
);
const copyAll = Promise.all([copyReadme, copyLicense, copyPackageJson]);
ora(copyAll, "Copying README, LICENSE and package.json");
await copyAll;
const copyTypesDir = fs.copy(
getLocalPath("src/@types"),
path.join(tempFolder, "@types"),
{
recursive: true,
overwrite: true,
},
);
ora(copyTypesDir, "Copying @types folder");
await copyTypesDir;
let newVer = null;
async function modPackageJson() {
const packageJson = await fs.readJSON(
path.join(tempFolder, "package.json"),
);
if (!process.env.NPM_TOKEN) {
const currentVer = packageJson.version;
console.log(`\nCurrent version: ${currentVer}`);
newVer = prompt(`New version: `, currentVer);
if (newVer === null) {
throw "Invalid version";
}
packageJson.version = newVer;
// Write back new version name
await fs.writeJSON(getLocalPath("package.json"), packageJson, {
spaces: 2,
});
}
// Remove unneeded sections
delete packageJson.private;
delete packageJson.scripts;
// Overwrite module info
packageJson.types = "./index.d.ts";
packageJson.main = "./index.js";
// Write final modified JSON to temp folder
await fs.writeJSON(path.join(tempFolder, "package.json"), packageJson, {
spaces: 2,
});
}
try {
const mod = modPackageJson();
ora(mod, "Modifying package.json");
await mod;
} catch {
process.exit(-1);
}
await divider("Publish package");
process.chdir(tempFolder);
if (!process.env.NPM_TOKEN) {
const OTP = prompt("Enter OTP (leave blank if none): ");
const publish = spawnAsync(IS_WINDOWS ? "npm.cmd" : "npm", [
"publish",
OTP ? `--otp` : "",
OTP ? OTP : "",
]);
ora(publish, "Publishing package");
await publish;
} else {
const npmPublish = require("@jsdevtools/npm-publish");
// Run npm-publish with all defaults
await npmPublish({
token: process.env.NPM_TOKEN,
});
}
await divider("Clean up");
await cleanUp();
}
main();