mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
8be4c0e4f8
Summary of the changes: * define the `exports` field in `package.json`; `jQuery` & `$` are also exported as named exports in ESM builds now * declare `"type": "module"` globally except for the `build` folder * add the `--esm` option to `grunt custom`, generating jQuery as an ECMAScript module into the `dist-module` folder * expand `node_smoke_tests` to test the slim & ESM builds and their various combinations; also, test both jQuery loaded via a path to the file as well as from module specifiers that should be parsed via the `exports` feature * add details about ESM usage to the release package README * run `compare_size` on all built minified files; don't run it anymore on unminified files where they don't provide lots of value * remove the remove_map_comment task; SWC doesn't insert the `//# sourceMappingURL=` pragma by default so there's nothing to strip Fixes gh-4592 Closes gh-5255
23 lines
534 B
Plaintext
23 lines
534 B
Plaintext
external
|
|
node_modules
|
|
*.min.js
|
|
dist/**
|
|
!dist/jquery.js
|
|
!dist/jquery.min.js
|
|
!dist/jquery.slim.js
|
|
!dist/jquery.slim.min.js
|
|
dist-module/**
|
|
!dist-module/jquery.module.js
|
|
!dist-module/jquery.module.min.js
|
|
!dist-module/jquery.slim.module.js
|
|
!dist-module/jquery.slim.module.min.js
|
|
test/data/jquery-1.9.1.js
|
|
test/data/badcall.js
|
|
test/data/badjson.js
|
|
test/data/json_obj.js
|
|
test/data/readywaitasset.js
|
|
test/data/readywaitloader.js
|
|
test/data/support/csp.js
|
|
test/data/support/getComputedSupport.js
|
|
test/data/core/jquery-iterability-transpiled.js
|