mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
763ade6dda
Summary of the changes:
* expand `node_smoke_tests` to test the full & slim builds
* run `compare_size` on all built minified files; don't run it anymore on
unminified files where they don't provide lots of value
The main goal of this change is to make it easier to compare sizes of both the
full & slim builds between the `3.x-stable` & `main` branches.
Closes gh-5291
Ref gh-5255
(partially cherry-picked from commit 8be4c0e4f8
)
15 lines
487 B
JavaScript
15 lines
487 B
JavaScript
"use strict";
|
|
|
|
const path = require( "node:path" );
|
|
|
|
const ROOT_DIR = path.resolve( __dirname, "..", "..", ".." );
|
|
|
|
// If `jQueryModuleSpecifier` is a real relative path, make it absolute
|
|
// to make sure it resolves to the same file inside utils from
|
|
// a subdirectory. Otherwise, leave it as-is as we may be testing `exports`
|
|
// so we need input as-is.
|
|
const getJQueryModuleSpecifier = () =>
|
|
path.resolve( ROOT_DIR, process.argv[ 2 ] );
|
|
|
|
module.exports = { getJQueryModuleSpecifier };
|