@finema/core 1.4.111 → 1.4.113
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 +6 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineNuxtModule, createResolver, installModule, addPlugin, addComponentsDir, addImportsDir } from '@nuxt/kit';
|
|
2
2
|
|
|
3
3
|
const name = "@finema/core";
|
|
4
|
-
const version = "1.4.
|
|
4
|
+
const version = "1.4.113";
|
|
5
5
|
|
|
6
6
|
const colors = {
|
|
7
7
|
black: "#20243E",
|
|
@@ -396,6 +396,11 @@ const module = defineNuxtModule({
|
|
|
396
396
|
...nuxt.options.build || {},
|
|
397
397
|
transpile: [...nuxt.options.build?.transpile || [], "date-fns", "@vuepic/vue-datepicker"]
|
|
398
398
|
};
|
|
399
|
+
nuxt.options.vite = {
|
|
400
|
+
optimizeDeps: {
|
|
401
|
+
include: [...nuxt.options.vite?.optimizeDeps?.include || [], "quill"]
|
|
402
|
+
}
|
|
403
|
+
};
|
|
399
404
|
await installModule("@pinia/nuxt");
|
|
400
405
|
await installModule("@vee-validate/nuxt", veeValidateNuxtOptions);
|
|
401
406
|
if (!options.securityDisabled) {
|