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
438 B
JavaScript
15 lines
438 B
JavaScript
"use strict";
|
|
|
|
const process = require( "node:process" );
|
|
|
|
if ( typeof Symbol === "undefined" ) {
|
|
console.log( "Symbols not supported, skipping the test..." );
|
|
process.exit();
|
|
}
|
|
|
|
const { ensureIterability } = require( "./lib/ensure_iterability_es6" );
|
|
const { getJQueryModuleSpecifier } = require( "./lib/jquery-module-specifier" );
|
|
|
|
const jQueryModuleSpecifier = getJQueryModuleSpecifier();
|
|
ensureIterability( jQueryModuleSpecifier );
|