@timus-networks/theme 2.4.15 → 2.4.16
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 +9 -13
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { resolve, parse } from 'node:path';
|
|
1
|
+
import { resolve } from 'node:path';
|
|
3
2
|
import { defineNuxtModule, createResolver, useNuxt, addImports, addPlugin } from 'nuxt/kit';
|
|
4
3
|
|
|
5
4
|
|
|
@@ -12,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
|
|
|
12
11
|
const __dirname = __cjs_path__.dirname(__filename);
|
|
13
12
|
const require = __cjs_mod__.createRequire(import.meta.url);
|
|
14
13
|
const name = "@timus-networks/theme";
|
|
15
|
-
const version = "2.4.
|
|
14
|
+
const version = "2.4.16";
|
|
16
15
|
const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
|
|
17
16
|
const type = "module";
|
|
18
17
|
const exports = {
|
|
@@ -144,16 +143,13 @@ const module = defineNuxtModule({
|
|
|
144
143
|
const resolver = createResolver(import.meta.url);
|
|
145
144
|
const isDev = nuxt.options.dev;
|
|
146
145
|
console.info(`'${PackageJson.name}' loaded. Version:${options.version}`);
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
from: `${composablesDir}/${file}`
|
|
155
|
-
});
|
|
156
|
-
});
|
|
146
|
+
createResolver(import.meta.url);
|
|
147
|
+
addImports([
|
|
148
|
+
{
|
|
149
|
+
name: "useBreadcrumb",
|
|
150
|
+
from: resolver.resolve(`${folderPath}/composables`)
|
|
151
|
+
}
|
|
152
|
+
]);
|
|
157
153
|
const components_dir_list = [
|
|
158
154
|
{ env: "development", path: `${folderPath}/components/development` },
|
|
159
155
|
{ env: "production", path: `${folderPath}/components/production` }
|
package/package.json
CHANGED