@finema/core 2.5.5 → 2.6.0
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/module.json +1 -1
- package/dist/module.mjs +3 -2
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import defu from 'defu';
|
|
|
3
3
|
import * as theme from '../dist/runtime/theme/index.js';
|
|
4
4
|
|
|
5
5
|
const name = "@finema/core";
|
|
6
|
-
const version = "2.
|
|
6
|
+
const version = "2.6.0";
|
|
7
7
|
|
|
8
8
|
const nuxtAppOptions = {
|
|
9
9
|
head: {
|
|
@@ -131,7 +131,8 @@ const module = defineNuxtModule({
|
|
|
131
131
|
addPlugin(resolve("./runtime/plugin"));
|
|
132
132
|
void addComponentsDir({
|
|
133
133
|
path: resolve(runtimeDir, "components"),
|
|
134
|
-
prefix: _options.prefix
|
|
134
|
+
prefix: _options.prefix,
|
|
135
|
+
priority: 10
|
|
135
136
|
});
|
|
136
137
|
addImportsDir(resolve(runtimeDir, "composables"));
|
|
137
138
|
addImportsDir(resolve(runtimeDir, "utils"));
|