-
Notifications
You must be signed in to change notification settings - Fork 669
/
Copy pathget_releases.mjs
162 lines (136 loc) · 5.39 KB
/
get_releases.mjs
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
/* eslint-disable no-console */
import { execSync } from 'child_process';
import fs from 'fs';
import path, { dirname } from 'path';
import copy from 'recursive-copy';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const RELEASES_DIR = path.join(__dirname, '../releases');
// Add a suffix to worktrees / temporary folders, to make sure they don't collide with existing worktrees / folders.
const TEMP_SUFFIX = '-delete-me-later';
// Determine which versions the user wants to extract/download.
const versionsRequested = process.argv.slice(2);
if (versionsRequested.length === 0) {
console.log('Usage: node get_releases.mjs <release-version>');
console.log('Usage: node get_releases.mjs <release-version> <release-version> <release-version> ...');
console.log('Example: node get_releases.mjs 3.0.9');
process.exit(1);
}
const versions3OrEarlier = versionsRequested.filter((ver) => parseFloat(ver) < 4.0);
const versions4OrLater = versionsRequested.filter((ver) => parseFloat(ver) >= 4.0);
// Helper function for the command line interface.
const pressAnyKeyToProceed = async () => {
process.stdin.setRawMode(true);
return new Promise((resolve) =>
process.stdin.once('data', (data) => {
const byteArray = [...data];
if (byteArray.length > 0) {
if (byteArray[0] === 3) {
console.log('^C');
process.exit(1);
}
if (byteArray[0] === 81 || byteArray[0] === 113) {
console.log('QUIT');
process.exit(0);
}
}
process.stdin.setRawMode(false);
resolve();
})
);
};
console.log('Check out release files for the following versions?');
for (const ver of versionsRequested) {
console.log(' ' + ver + ' --> ' + path.join(RELEASES_DIR, ver, '/'));
}
console.log('\nPress any key to proceed. Press Q or CTRL+C to quit.\n');
await pressAnyKeyToProceed();
// Make the target directory if it doesn't exist.
function createTargetDirs() {
if (!fs.existsSync(RELEASES_DIR)) {
console.log('mkdir releases/ --> ' + RELEASES_DIR);
fs.mkdirSync(RELEASES_DIR);
}
versionsRequested.forEach((ver) => {
const targetDir = path.join(RELEASES_DIR, ver);
if (!fs.existsSync(targetDir)) {
console.log(`mkdir releases/${ver}/ --> ${targetDir}`);
fs.mkdirSync(targetDir);
}
});
versions4OrLater.forEach((ver) => {
const tempDir = path.join(RELEASES_DIR, ver + TEMP_SUFFIX);
if (!fs.existsSync(tempDir)) {
fs.mkdirSync(tempDir);
}
});
}
createTargetDirs();
// For versions <= 3.0.9, we create a git worktree to check out the release/ folder from each tag.
async function getReleasesForVersion3OrEarlier() {
const worktrees = [];
console.log('\nCreating temporary worktrees for versions:', versions3OrEarlier);
for (const ver of versions3OrEarlier) {
const worktreePath = path.join(RELEASES_DIR, ver + TEMP_SUFFIX);
worktrees.push(worktreePath);
if (fs.existsSync(worktreePath)) {
console.log('Removing existing worktree:', worktreePath);
execSync(`git worktree remove ${worktreePath}`).toString();
}
const output = execSync(`git worktree add --detach ${worktreePath} ${ver}`).toString();
console.log(output);
}
console.log('\nExtract build files.');
for (const ver of versions3OrEarlier) {
const sourceDir = path.join(RELEASES_DIR, ver + TEMP_SUFFIX, 'releases');
const targetDir = path.join(RELEASES_DIR, ver);
// copy all files from sourceDir to targetDir.
try {
const results = await copy(sourceDir, targetDir);
console.info('Copied ' + results.length + ' files to: ' + targetDir);
} catch (error) {
console.error('Copy failed: ' + error);
}
}
console.log('\nRemove temporary worktrees.');
for (const worktreePath of worktrees) {
execSync(`git worktree remove ${worktreePath} --force`).toString();
}
// Prune worktree information.
execSync(`git worktree prune`).toString();
}
await getReleasesForVersion3OrEarlier();
// For versions >= 4.0, we download the package from npm.
async function getReleasesForVersion4OrLater() {
for (const ver of versions4OrLater) {
// Download & extract the package in a temporary directory.
const tempDir = path.join(RELEASES_DIR, ver + TEMP_SUFFIX);
// Remove the temporary directory if it already exists.
if (fs.existsSync(tempDir)) {
fs.rmSync(tempDir, { recursive: true });
}
// Make the temporary directory.
fs.mkdirSync(tempDir);
console.log('\nDownload', ver, 'from npm.');
execSync(`npm pack vexflow@${ver} --pack-destination ${tempDir} 2> /dev/null`).toString();
const packageFile = `vexflow-${ver}.tgz`;
console.log('Extract', packageFile);
const tgzFile = path.join(tempDir, packageFile);
execSync(`tar -xf ${tgzFile} -C ${tempDir}`).toString();
// Copy the files from the temporary directory to the target directory.
const sourceDir = path.join(tempDir, 'package', 'build');
const targetDir = path.join(RELEASES_DIR, ver);
// copy all files from sourceDir to targetDir.
try {
const results = await copy(sourceDir, targetDir);
console.info('Copied ' + results.length + ' files to: ' + targetDir);
} catch (error) {
console.error('Copy failed: ' + error);
}
// Remove the temporary directory.
fs.rmdirSync(tempDir, { recursive: true });
}
}
await getReleasesForVersion4OrLater();
process.exit(0);