Skip to content

Commit 3d76e78

Browse files
committed
verify:source-maps: temporarily ignore build/wp-includes/js/dist/core-data.js
1 parent c4b7eb7 commit 3d76e78

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Gruntfile.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1713,7 +1713,7 @@ module.exports = function(grunt) {
17131713
*/
17141714
grunt.registerTask( 'verify:build', [
17151715
'verify:old-files',
1716-
// 'verify:source-maps', We have a problem where Yjs is being bundled in core-data. Commenting it out until we have a solution.
1716+
'verify:source-maps',
17171717
] );
17181718

17191719
/**
@@ -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)