Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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/',
} ],
},
Expand Down
Loading