forked from jquery/jquery-mousewheel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.mjs
51 lines (41 loc) · 1.62 KB
/
build.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
import fs from "node:fs/promises";
import path from "node:path";
import { exec as nodeExec } from "node:child_process";
import util from "node:util";
import { minify } from "./minify.mjs";
const exec = util.promisify( nodeExec );
const pkg = JSON.parse( await fs.readFile( "./package.json", "utf8" ) );
async function isCleanWorkingDir() {
const { stdout } = await exec( "git status --untracked-files=no --porcelain" );
return !stdout.trim();
}
async function versionForDist( { srcPath, destPath, version } ) {
const code = await fs.readFile( srcPath, "utf8" );
const compiledContents = code.replace( /@VERSION/g, version );
await fs.mkdir( path.dirname( destPath ), { recursive: true } );
await fs.writeFile( destPath, compiledContents );
console.log( `${ destPath } v${ version } created.` );
}
export async function build( { version = process.env.VERSION } = {} ) {
// Add the short commit hash to the version string
// when the version is not for a release.
if ( !version ) {
const { stdout } = await exec( "git rev-parse --short HEAD" );
const isClean = await isCleanWorkingDir();
// "+SHA" is semantically correct
// Add ".dirty" as well if the working dir is not clean
version = `${ pkg.version }+${ stdout.trim() }${
isClean ? "" : ".dirty"
}`;
}
await versionForDist( {
srcPath: "src/jquery.mousewheel.js",
destPath: "dist/jquery.mousewheel.js",
version
} );
await minify( {
srcPath: "dist/jquery.mousewheel.js",
destPath: "dist/jquery.mousewheel.min.js",
version
} );
}