@hostlink/nuxt-light 1.10.12 → 1.10.13

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,5 +1,5 @@
1
1
  {
2
2
  "name": "light",
3
3
  "configKey": "light",
4
- "version": "1.10.12"
4
+ "version": "1.10.13"
5
5
  }
package/dist/module.mjs CHANGED
@@ -13,7 +13,7 @@ const module = defineNuxtModule({
13
13
  async setup(options, nuxt) {
14
14
  const resolver = createResolver(import.meta.url);
15
15
  const { resolve: resolveQuasar } = createResolver(dirname(await resolvePath("quasar/package.json")));
16
- const { version: quasarVersion } = JSON.parse(await readFile(resolveQuasar("package.json"), "utf-8"));
16
+ JSON.parse(await readFile(resolveQuasar("package.json"), "utf-8"));
17
17
  const importMap = JSON.parse(await await readFile(resolveQuasar("dist/transforms/import-map.json"), "utf-8"));
18
18
  nuxt.options.css.push("quasar/dist/quasar.prod.css");
19
19
  nuxt.options.css.push("@quasar/extras/material-icons/material-icons.css");
@@ -80,9 +80,6 @@ const module = defineNuxtModule({
80
80
  mode: "client"
81
81
  });
82
82
  nuxt.hook("vite:extendConfig", (config) => {
83
- config.optimizeDeps ??= {};
84
- config.optimizeDeps.exclude ??= [];
85
- config.optimizeDeps.exclude.push("quasar");
86
83
  config.plugins ??= [];
87
84
  config.plugins.push(
88
85
  virtualQuasarEntryPlugin({
@@ -93,14 +90,6 @@ const module = defineNuxtModule({
93
90
  }
94
91
  })
95
92
  );
96
- config.define = {
97
- ...config.define,
98
- __QUASAR_VERSION__: `'${quasarVersion}'`,
99
- __QUASAR_SSR__: false,
100
- __QUASAR_SSR_SERVER__: false,
101
- __QUASAR_SSR_CLIENT__: false,
102
- __QUASAR_SSR_PWA__: false
103
- };
104
93
  });
105
94
  }
106
95
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostlink/nuxt-light",
3
- "version": "1.10.12",
3
+ "version": "1.10.13",
4
4
  "description": "HostLink Nuxt Light Framework",
5
5
  "repository": "@hostlink/nuxt-light",
6
6
  "license": "MIT",