I was trying to update the blockly to latest commit. I pulled the changes. Now i am trying to build the appinventor with latest blockly. However as expected there are a lot of files that i needed to add in the ploverConfig.js.
The way i currently figure out which are the new files that needed to be added in ploverConfig.js is by running the ant command and each time i get name of a new file in the build fail error.
Example:
[java] org.plovr.MissingProvideException: Missing provide for Blockly.VariableModel in ../lib/blockly/core/field_variable.js
This way I know that i need to add variable_model.js file in ploverConfig.js.
However instead of manually running ant command and finding out the files, is there any proper way, this should be done?
Further more, in the latest blockly update they have removed gesture code and instead created gesture.js file.
I saw there is an open issue on github for updating blockly to latest version Update to latest Blockly with plugin support · Issue #2686 · mit-cml/appinventor-sources · GitHub from last year. So, I am curious about when will blockly updated in MIT-cml as well?
Thank you