File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ function old_function() {}`;
239239 } ) ;
240240 } ) ;
241241
242- describe ( 'Block.json file patterns (src/**/block.json)' , ( ) => {
242+ describe ( 'Block.json file patterns (src/**/block.json and build/**/block.json )' , ( ) => {
243243 const patterns = [
244244 {
245245 search : / " v e r s i o n " : " \d + \. \d + \. \d + " / ,
Original file line number Diff line number Diff line change @@ -280,8 +280,8 @@ async function createRelease() {
280280 ] ) ;
281281 } ) ;
282282
283- // Update version in block.json files
284- const blockJsonFiles = execWithOutput ( 'find src -name "block.json"' ) . split ( '\n' ) ;
283+ // Update version in block.json files (src and build directories)
284+ const blockJsonFiles = execWithOutput ( 'find src build -name "block.json"' ) . split ( '\n' ) ;
285285
286286 blockJsonFiles . forEach ( ( filePath ) => {
287287 if ( filePath ) {
You can’t perform that action at this time.
0 commit comments