-
Notifications
You must be signed in to change notification settings - Fork 70
/
buildSourceArchive.js
42 lines (33 loc) · 1.26 KB
/
buildSourceArchive.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
/* eslint-disable @typescript-eslint/no-var-requires */
const os = require("os");
const fs = require("fs");
const path = require("path");
const archiver = require("archiver");
const version = require("./package.json").version;
const archiveDirectory = "dist";
const platform = os.platform();
const arch = os.arch();
// Determine the packaging format based on the OS
const isWindows = platform === "win32";
const archiveFormat = isWindows ? "zip" : "tar";
const archiveExtension = isWindows ? "zip" : "tar.gz";
console.log("Building source archive ...");
// Ensure that the archive destination directory exists
if (!fs.existsSync(archiveDirectory)) {
fs.mkdirSync(archiveDirectory);
}
// Create the archive file with the same name as the package directory
const archiveFileName = `ScanCode-Workbench-${version}-${platform}-${arch}-src.${archiveExtension}`;
const archiveFilePath = path.join(archiveDirectory, archiveFileName);
const output = fs.createWriteStream(archiveFilePath);
const archive = archiver(archiveFormat, { gzip: true });
output.on("close", () => {
console.log(`Created source archive at ${archiveFilePath}`);
});
archive.pipe(output);
archive.glob("**/*", {
dot: true,
cwd: process.cwd(),
ignore: ["dist/**", "out/**", ".git/**"],
});
archive.finalize();