diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-06-27 18:23:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 18:23:58 +0200 |
commit | 5701957b7223659c52a43f8c2c5465fdf2803df4 (patch) | |
tree | 2a33cd8a8796928db6ed26cf7237ef3b32b2d84c /.github/workflows/node.js.yml | |
parent | 62b9a2583460c2384f6de1d0a6aeaf05e51d523b (diff) | |
download | jquery-5701957b7223659c52a43f8c2c5465fdf2803df4.tar.gz jquery-5701957b7223659c52a43f8c2c5465fdf2803df4.zip |
Build: Drop individual AMD modules
With this change, jQuery build no longer generates the `amd` directory with
AMD modules transpiled from source `src` ECMAScript Modules. To use individual
jQuery modules from source, ESM is now required.
Note that this DOES NOT affect the main `"jquery"` AMD module defined by built
jQuery files; those remain supported.
Closes gh-5276
Diffstat (limited to '.github/workflows/node.js.yml')
-rw-r--r-- | .github/workflows/node.js.yml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 92497822d..da773cf17 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -36,10 +36,6 @@ jobs: NODE_VERSION: "18.x" NPM_SCRIPT: "test:esmodules" BROWSERS: "ChromeHeadless" - - NAME: "Browser tests: AMD build, Chrome" - NODE_VERSION: "18.x" - NPM_SCRIPT: "test:amd" - BROWSERS: "ChromeHeadless" - NAME: "Browser tests: full build, Firefox ESR" NODE_VERSION: "18.x" NPM_SCRIPT: "test:browser" |