File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ _This release is scheduled to be released on 2025-01-01._
6464- [ calendar] Fix showEnd for Full Day events (#3602 )
6565- [ tests] Suppress "module is not defined" in e2e tests (#3647 )
6666- [ calendar] Fix #3267 (styles array, really this time!)
67+ - [ core] Fix #3662 js/positions.js created incorrectly
6768
6869## [ 2.29.0] - 2024-10-01
6970
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ module.exports = {
5252 // if not already discovered
5353 if ( modulePositions . length === 0 ) {
5454 // get the lines of the index.html
55- const lines = fs . readFileSync ( indexFileName ) . toString ( ) . split ( os . EOL ) ;
55+ const lines = fs . readFileSync ( indexFileName ) . toString ( ) . split ( "\n" ) ;
5656 // loop thru the lines
5757 lines . forEach ( ( line ) => {
5858 // run the regex on each line
You can’t perform that action at this time.
0 commit comments