Anatomy of an extension
Get acknowledged with some rules which apply to any extension
Package.json
{
"mosaic": {
"type": "extension"
}
...
}File structure
├── 📁 node_modules
├── 📄 package.json
└── 📁 src
├── ... # Any own logic of your extension here
└── 📁 plugin # Plugging logic here!
├── 📄 some.plugin.js
└── 📄 other.plugin.tsLast updated