⚠️ Breaking Changes
We have decided to remove both the. plugins/index.js
as well as the composables/index.js
files. This means you will now have to import plugins and composables directly from their respective parent folder.
Before:
import { useMagicEmitter, useMagicDrawer } from '@maas/vue-equipment/plugins'
After:
import { useMagicEmitter } from '@maas/vue-equipment/plugins/MagicEmitter'
import { useMagicDrawer } from '@maas/vue-equipment/plugins/MagicDrawer'
This change was made to prevent a tree shaking and peer dependency bug that was reported earlier. The documentation has also been updated accordingly.
Full Changelog: v1.0.0-beta.33...v1.0.0-beta.34