Skip to content

Commit

Permalink
chore!: properly add the removal of utils.global to the renamings fil…
Browse files Browse the repository at this point in the history
…e. (#6204)

* chore!: properly add the removal of utils.global to the renamings file.

* fix: add missing commma
  • Loading branch information
BeksOmega committed Jun 10, 2022
1 parent 3dbcfe0 commit 2f734f7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion scripts/migration/renamings.json5
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,11 @@
mouseToSvg: {newModule: 'Blockly.utils.browserEvents'},
},
},
{
oldName: 'Blockly.utils.global',
newExport: 'globalThis',
newPath: 'Blockly.utils.global',
},
{
oldName: 'Blockly.utils.IdGenerator',
newName: 'Blockly.utils.idGenerator',
Expand Down Expand Up @@ -1332,5 +1337,10 @@
},
],

'develop': [ ],
'develop': [
{
'oldName': 'Blockly.utils.global',
'newPath': 'globalThis',
}
],
}

0 comments on commit 2f734f7

Please sign in to comment.