This commit is contained in:
Jochen Mehlich 2025-05-04 02:06:30 +00:00 committed by GitHub
commit d8a5fd960e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -524,4 +524,12 @@ class SomeBlocks {
});
};
}
module.exports = SomeBlocks;
```
## Linking a extension
To enable your custom written extension we need to add it to the extension-manager (src/extension-support/extension-manager.js) in the builtinExtensions list
```
someBlocks: () => require('.../extensions/someBlocks');
```