Skip to content

Commit 432cdc2

Browse files
committed
Build: Don't commit the min file or version to main, add release process
Changes: 1. Don't commit the minified file to the `main` branch. 2. Move the source file to `src/`. 3. Compute the version during the build. 4. Add a `release-it`-based release process. # Conflicts: # jquery.mousewheel.min.js # src/jquery.mousewheel.js
1 parent 47445bd commit 432cdc2

15 files changed

+4197
-299
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ tmp
1212

1313
npm-debug.log*
1414

15+
/dist
1516
/node_modules
1617

1718
# Ignore BrowserStack testing files

.release-it.js

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
"use strict";
2+
3+
module.exports = {
4+
preReleaseBase: 1,
5+
hooks: {
6+
"before:init": "bash ./build/release/pre-release.sh",
7+
"after:version:bump":
8+
"sed -i 's/main\\/AUTHORS.txt/${version}\\/AUTHORS.txt/' package.json",
9+
"after:bump": "cross-env VERSION=${version} npm run build",
10+
"before:git:release": "git add -f dist/",
11+
"after:release": "echo 'Run the following to complete the release:' && " +
12+
"echo './build/release/post-release.sh $\{version}'"
13+
},
14+
git: {
15+
commitMessage: "Release: ${version}",
16+
getLatestTagFromAllRefs: true,
17+
pushRepo: "[email protected]:jquery/jquery-mousewheel.git",
18+
requireBranch: "main",
19+
requireCleanWorkingDir: true
20+
},
21+
github: {
22+
pushRepo: "[email protected]:jquery/jquery-mousewheel.git",
23+
release: true,
24+
tokenRef: "JQUERY_GITHUB_TOKEN"
25+
},
26+
npm: {
27+
publish: true
28+
}
29+
};

ChangeLog.md CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Mouse Wheel ChangeLog
1+
# Mouse Wheel Change Log
22

33
## 3.2.1
44

build/release/post-release.sh

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/bin/sh
2+
3+
set -euo pipefail
4+
5+
# $1: Version
6+
7+
dist=tmp/release/dist
8+
9+
if [[ -z "$1" ]] then
10+
echo "Version is not set (1st argument)"
11+
exit 1
12+
fi
13+
14+
if [[ -z "$2" ]] then
15+
echo "Blog URL is not set (2nd argument)"
16+
exit 1
17+
fi
18+
19+
# Restore AUTHORS URL
20+
sed -i "s/$1\/AUTHORS.txt/main\/AUTHORS.txt/" package.json
21+
git add package.json
22+
23+
# Remove built files from tracking.
24+
npm run build:clean
25+
git rm --cached -r dist/
26+
git commit -m "Release: remove dist files from main branch"
27+
28+
# Wait for confirmation from user to push changes
29+
read -p "Press enter to push changes to main branch"
30+
git push

build/release/pre-release.sh

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/sh
2+
3+
set -euo pipefail
4+
5+
read -p "Press enter if you updated CHANGELOG.md; abort otherwise"
6+
7+
# Install dependencies
8+
npm ci
9+
10+
# Clean all release and build artifacts
11+
npm run build:clean
12+
13+
# Run tests
14+
npm test

build/tasks/build.mjs

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
import fs from "node:fs/promises";
2+
import path from "node:path";
3+
import { exec as nodeExec } from "node:child_process";
4+
import util from "node:util";
5+
import { minify } from "./minify.mjs";
6+
7+
const exec = util.promisify( nodeExec );
8+
9+
const pkg = JSON.parse( await fs.readFile( "./package.json", "utf8" ) );
10+
11+
async function isCleanWorkingDir() {
12+
const { stdout } = await exec( "git status --untracked-files=no --porcelain" );
13+
return !stdout.trim();
14+
}
15+
16+
async function versionForDist( { srcPath, destPath, version } ) {
17+
const code = await fs.readFile( srcPath, "utf8" );
18+
const compiledContents = code.replace( /@VERSION/g, version );
19+
20+
await fs.mkdir( path.dirname( destPath ), { recursive: true } );
21+
await fs.writeFile( destPath, compiledContents );
22+
console.log( `${ destPath } v${ version } created.` );
23+
}
24+
25+
export async function build( { version = process.env.VERSION } = {} ) {
26+
27+
// Add the short commit hash to the version string
28+
// when the version is not for a release.
29+
if ( !version ) {
30+
const { stdout } = await exec( "git rev-parse --short HEAD" );
31+
const isClean = await isCleanWorkingDir();
32+
33+
// "+SHA" is semantically correct
34+
// Add ".dirty" as well if the working dir is not clean
35+
version = `${ pkg.version }+${ stdout.trim() }${
36+
isClean ? "" : ".dirty"
37+
}`;
38+
}
39+
40+
await versionForDist( {
41+
srcPath: "src/jquery.mousewheel.js",
42+
destPath: "dist/jquery.mousewheel.js",
43+
version
44+
} );
45+
46+
await minify( {
47+
srcPath: "dist/jquery.mousewheel.js",
48+
destPath: "dist/jquery.mousewheel.min.js",
49+
version
50+
} );
51+
}
+11-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import fs from "node:fs/promises";
2-
import path from "node:path";
32
import swc from "@swc/core";
3+
import path from "node:path";
44

5-
const rjs = /\.js$/;
5+
export async function minify( { srcPath, destPath, version } ) {
6+
const contents = await fs.readFile( srcPath, "utf8" );
67

7-
export async function minify( { filename, dir } ) {
8-
const contents = await fs.readFile( path.join( dir, filename ), "utf8" );
8+
await fs.mkdir( path.dirname( destPath ), { recursive: true } );
99

1010
const { code } = await swc.minify(
1111
contents,
@@ -17,7 +17,11 @@ export async function minify( { filename, dir } ) {
1717
},
1818
format: {
1919
ecma: 5,
20-
asciiOnly: true
20+
asciiOnly: true,
21+
comments: false,
22+
preamble: `/*! jQuery Mousewheel ${ version }` +
23+
" | (c) OpenJS Foundation and other contributors" +
24+
" | jquery.org/license */\n"
2125
},
2226
inlineSourcesContent: false,
2327
mangle: true,
@@ -26,12 +30,10 @@ export async function minify( { filename, dir } ) {
2630
}
2731
);
2832

29-
const minFilename = filename.replace( rjs, ".min.js" );
30-
3133
await fs.writeFile(
32-
path.join( dir, minFilename ),
34+
destPath,
3335
code
3436
);
3537

36-
console.log( `file ${ minFilename } created.` );
38+
console.log( `file ${ destPath } created.` );
3739
}

eslint.config.mjs

+22-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,19 @@ import globals from "globals";
33

44
export default [
55
{
6-
ignores: [ "**/*.min.js" ],
6+
ignores: [ "dist/**/*.js" ],
77
rules: {
88
...jqueryConfig.rules,
99
indent: [ "error", 4 ]
1010
}
1111
},
1212

1313
{
14-
files: [ "jquery.mousewheel.js", "jquery.mousewheel.min.js", "test/**/*.js" ],
14+
files: [
15+
"src/**/*.js",
16+
"dist/**/*.js",
17+
"test/**/*.js"
18+
],
1519
languageOptions: {
1620

1721
// Support: IE 9 - 11+
@@ -31,7 +35,7 @@ export default [
3135
},
3236

3337
{
34-
files: [ "jquery.mousewheel.js" ],
38+
files: [ "src/**/*.js" ],
3539
rules: {
3640
strict: [ "error", "function" ],
3741
indent: [
@@ -61,7 +65,21 @@ export default [
6165
},
6266

6367
{
64-
files: [ "eslint.config.mjs", "build/**/*.mjs" ],
68+
files: [ "*.js" ],
69+
languageOptions: {
70+
ecmaVersion: "latest",
71+
sourceType: "commonjs",
72+
globals: {
73+
...globals.node
74+
}
75+
},
76+
rules: {
77+
...jqueryConfig.rules
78+
}
79+
},
80+
81+
{
82+
files: [ "*.mjs", "build/**/*.mjs" ],
6583
languageOptions: {
6684
ecmaVersion: "latest",
6785
sourceType: "module",

jquery.mousewheel.min.js

-4
This file was deleted.

0 commit comments

Comments
 (0)