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
)
17 lines
534 B
JavaScript
17 lines
534 B
JavaScript
"use strict";
|
|
|
|
const { JSDOM } = require( "jsdom" );
|
|
|
|
const { ensureJQuery } = require( "./lib/ensure_jquery" );
|
|
const { ensureGlobalNotCreated } = require( "./lib/ensure_global_not_created" );
|
|
const { getJQueryModuleSpecifier } = require( "./lib/jquery-module-specifier" );
|
|
|
|
const { window } = new JSDOM( "" );
|
|
|
|
const jQueryModuleSpecifier = getJQueryModuleSpecifier();
|
|
const jQueryFactory = require( jQueryModuleSpecifier );
|
|
const jQuery = jQueryFactory( window );
|
|
|
|
ensureJQuery( jQuery );
|
|
ensureGlobalNotCreated( module.exports );
|