This commit is contained in:
Evan
2026-09-07 09:55:36 +08:00
parent 9b6892f2ed
commit badbc11154
9098 changed files with 985321 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/**
* Webpack shim module
*
* Uses webpack imports-loader and exports-loader to provide the horizontal and
* vertical flavors of Blockly. All of the other files in this directory shim
* Blockly and goog between blockly_compressed_* and blocks_compressed*.
*
* Horizontal and Vertical export Blockly out of
* blockly_compressed_[horizontal, vertical] +
* blocks_compressed +
* blocks_compressed_[horizontal, vertical] +
* msg/messages
**/
module.exports = {
Horizontal: require('./horizontal'),
Vertical: require('./vertical')
};