Skip to content

Commit 4e64b4a

Browse files
committed
Editor: update packages.
Updates the packages to match Gutenberg version 21.9.0 RC2. Also updates the sync script to work with the new `package-lock.json` format. Some reusable block tests were adjusted to work with more render arguments. Added `core-data` to the ignore list for `verify:source-maps` because Yjs has been bundled by accident. To be removed in a follow-up. See https://core.trac.wordpress.org/ticket/64120. See WordPress/gutenberg#72503. See: #10355. See: https://core.trac.wordpress.org/ticket/64117. Props ellatrix, dmsnell. Fixes #64117. git-svn-id: https://develop.svn.wordpress.org/trunk@61009 602fd350-edb4-49c9-b593-d223f7449a82
1 parent b5e4bd8 commit 4e64b4a

File tree

96 files changed

+4992
-1895
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+4992
-1895
lines changed

Gruntfile.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1785,6 +1785,9 @@ module.exports = function(grunt) {
17851785
const ignoredFiles = [
17861786
'build/wp-includes/js/dist/components.js',
17871787
'build/wp-includes/js/dist/data.js',
1788+
// We have a problem where Yjs is being bundled in core-data.
1789+
// Ignoring this file until we find a solution.
1790+
'build/wp-includes/js/dist/core-data.js',
17881791
];
17891792
const files = buildFiles.reduce( ( acc, path ) => {
17901793
// Skip excluded paths and any path that isn't a file.

0 commit comments

Comments
 (0)