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 @@ -277,8 +277,8 @@ async function createRelease() {
277277 ] ) ;
278278 } ) ;
279279
280- // Update version in block.json files
281- const blockJsonFiles = execWithOutput ( 'find src -name "block.json"' ) . split ( '\n' ) ;
280+ // Update version in block.json files (src and build directories)
281+ const blockJsonFiles = execWithOutput ( 'find src build -name "block.json"' ) . split ( '\n' ) ;
282282
283283 blockJsonFiles . forEach ( ( filePath ) => {
284284 if ( filePath ) {
You can’t perform that action at this time.
0 commit comments