Skip to content

Commit a503c69

Browse files
authored
Build: Explicitly exclude the queue module from the slim build
The queue module is not present in the slim build as it depends on deferred and our Gruntfile specifies excluding deferred should also exclude queue: https://github.com/jquery/jquery/blob/3.5.1/Gruntfile.js#L66 This commit makes this exclusion explicit so that the queue module never accidentally gets re-included in the slim build if it stopped importing from the deferred module directly. Closes gh-4793
1 parent e35fb62 commit a503c69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/tasks/build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ module.exports = function( grunt ) {
6060
const done = this.async();
6161

6262
try {
63-
const slimFlags = [ "-ajax", "-callbacks", "-deferred", "-effects" ];
63+
const slimFlags = [ "-ajax", "-callbacks", "-deferred", "-effects", "-queue" ];
6464
const flags = this.flags;
6565
const optIn = flags[ "*" ];
6666
let name = grunt.option( "filename" );

0 commit comments

Comments
 (0)