@finema/core 1.4.113 → 1.4.115

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.113",
3
+ "version": "1.4.115",
4
4
  "configKey": "core",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.7.4"
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.113";
4
+ const version = "1.4.115";
5
5
 
6
6
  const colors = {
7
7
  black: "#20243E",
@@ -392,15 +392,14 @@ const module = defineNuxtModule({
392
392
  nuxtRunTimeConfigOptions,
393
393
  nuxt.options.runtimeConfig
394
394
  );
395
- nuxt.options.build = {
396
- ...nuxt.options.build || {},
395
+ nuxt.options.build = _deepMerge({}, nuxt.options.build, {
397
396
  transpile: [...nuxt.options.build?.transpile || [], "date-fns", "@vuepic/vue-datepicker"]
398
- };
399
- nuxt.options.vite = {
397
+ });
398
+ nuxt.options.vite = _deepMerge({}, nuxt.options.vite, {
400
399
  optimizeDeps: {
401
- include: [...nuxt.options.vite?.optimizeDeps?.include || [], "quill"]
400
+ include: [...nuxt.options.vite?.optimizeDeps?.include || [], "quill", "@vueup/vue-quill"]
402
401
  }
403
- };
402
+ });
404
403
  await installModule("@pinia/nuxt");
405
404
  await installModule("@vee-validate/nuxt", veeValidateNuxtOptions);
406
405
  if (!options.securityDisabled) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.113",
3
+ "version": "1.4.115",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",