We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ee1559e + c725d0b commit bbd8e8fCopy full SHA for bbd8e8f
Gruntfile.js
@@ -612,6 +612,17 @@ module.exports = function(grunt) {
612
dest: WORKING_DIR + 'wp-includes/build/',
613
} ],
614
},
615
+ 'gutenberg-js': {
616
+ files: [ {
617
+ expand: true,
618
+ cwd: 'gutenberg/build',
619
+ src: [
620
+ 'pages/**/*.js',
621
+ 'routes/**/*.js',
622
+ ],
623
+ dest: WORKING_DIR + 'wp-includes/build/',
624
+ } ],
625
+ },
626
'gutenberg-modules': {
627
files: [ {
628
expand: true,
@@ -2041,6 +2052,7 @@ module.exports = function(grunt) {
2041
2052
2042
2053
grunt.registerTask( 'build:gutenberg', [
2043
2054
'copy:gutenberg-php',
2055
+ 'copy:gutenberg-js',
2044
2056
'gutenberg:copy',
2045
2057
'copy:gutenberg-modules',
2046
2058
'copy:gutenberg-styles',
0 commit comments