Skip to content

Commit 5aa7ed8

Browse files
committed
Build: drop support for Node 10
Close gh-5436
1 parent 0293d3e commit 5aa7ed8

File tree

6 files changed

+375
-229
lines changed

6 files changed

+375
-229
lines changed

.github/workflows/node.js.yml

-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ jobs:
4040
- NAME: "Firefox ESR"
4141
NODE_VERSION: "20.x"
4242
NPM_SCRIPT: "test:firefox"
43-
- NAME: "Node 10 Build"
44-
NODE_VERSION: "10.x"
45-
NPM_SCRIPT: "build:main"
4643
steps:
4744
- name: Checkout
4845
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

build/tasks/build.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
"use strict";
88

9-
const fs = require( "fs" );
10-
const path = require( "path" );
11-
const util = require( "util" );
12-
const exec = util.promisify( require( "child_process" ).exec );
9+
const fs = require( "node:fs/promises" );
10+
const path = require( "node:path" );
11+
const util = require( "node:util" );
12+
const exec = util.promisify( require( "node:child_process" ).exec );
1313
const rollup = require( "rollup" );
1414
const excludedFromSlim = require( "./lib/slim-exclude" );
1515
const rollupFileOverrides = require( "./lib/rollup-plugin-file-overrides" );
@@ -38,7 +38,7 @@ const removeWith = {
3838
};
3939

4040
async function read( filename ) {
41-
return fs.promises.readFile( path.join( srcFolder, filename ), "utf8" );
41+
return fs.readFile( path.join( srcFolder, filename ), "utf8" );
4242
}
4343

4444
// Remove the src folder and file extension
@@ -54,7 +54,7 @@ function moduleName( filename ) {
5454
async function readdirRecursive( dir, all = [] ) {
5555
let files;
5656
try {
57-
files = await fs.promises.readdir( path.join( srcFolder, dir ), {
57+
files = await fs.readdir( path.join( srcFolder, dir ), {
5858
withFileTypes: true
5959
} );
6060
} catch ( e ) {
@@ -151,7 +151,7 @@ async function writeCompiled( { code, dir, filename, version } ) {
151151
// yyyy-mm-ddThh:mmZ
152152
.replace( /@DATE/g, new Date().toISOString().replace( /:\d+\.\d+Z$/, "Z" ) );
153153

154-
await fs.promises.writeFile( path.join( dir, filename ), compiledContents );
154+
await fs.writeFile( path.join( dir, filename ), compiledContents );
155155
console.log( `[${ getTimestamp() }] ${ filename } v${ version } created.` );
156156
}
157157

@@ -194,7 +194,7 @@ async function build( {
194194
version += "+slim";
195195
}
196196

197-
await fs.promises.mkdir( dir, { recursive: true } );
197+
await fs.mkdir( dir, { recursive: true } );
198198

199199
// Exclude slim modules when slim is true
200200
const [ excluded, included ] = await checkExclude(
@@ -343,7 +343,7 @@ async function build( {
343343
// We normally process for dist during minification to save
344344
// file reads. However, some files are not minified and then
345345
// we need to do it separately.
346-
const contents = await fs.promises.readFile(
346+
const contents = await fs.readFile(
347347
path.join( dir, filename ),
348348
"utf8"
349349
);

0 commit comments

Comments
 (0)