@maas/vue-equipment 1.0.0-beta.78 → 1.0.0-beta.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nuxt/module.json +1 -1
- package/dist/nuxt/module.mjs +4 -0
- package/package.json +1 -1
package/dist/nuxt/module.json
CHANGED
package/dist/nuxt/module.mjs
CHANGED
|
@@ -175,6 +175,10 @@ const module$1 = defineNuxtModule({
|
|
|
175
175
|
nuxt.options.build.transpile.push("@maas/vue-equipment");
|
|
176
176
|
const packages = ["plugins", "composables", "utils"];
|
|
177
177
|
nuxt.options.alias = nuxt.options.alias ?? {};
|
|
178
|
+
for (const plugin of plugins) {
|
|
179
|
+
const alias = `@maas/vue-equipment/plugins/${plugin.name}/css`;
|
|
180
|
+
nuxt.options.alias[alias] = nuxt.options.alias[alias] ?? resolver.resolve(`../plugins/${plugin.name}/src/css`);
|
|
181
|
+
}
|
|
178
182
|
for (const pkg of packages) {
|
|
179
183
|
nuxt.options.alias[`@maas/vue-equipment/${pkg}`] = nuxt.options.alias[`@maas/vue-equipment/${pkg}`] ?? resolver.resolve(`../${pkg}`);
|
|
180
184
|
}
|