diff --git a/Gruntfile.js b/Gruntfile.js index 8603635b28fbc..99f7d3312f1a6 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -627,7 +627,13 @@ module.exports = function(grunt) { files: [ { expand: true, cwd: 'gutenberg/build/modules', - src: [ '**/*', '!**/*.map' ], + src: [ + '**/*', + '!**/*.map', + // Skip non-minified VIPS files — they are ~16MB of inlined WASM + // with no debugging value over the minified versions. + '!vips/!(*.min).js', + ], dest: WORKING_DIR + 'wp-includes/js/dist/script-modules/', } ], },