@timus-networks/theme 2.4.108 → 2.4.109
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
package/dist/module.mjs
CHANGED
|
@@ -11,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
|
|
|
11
11
|
const __dirname = __cjs_path__.dirname(__filename);
|
|
12
12
|
const require = __cjs_mod__.createRequire(import.meta.url);
|
|
13
13
|
const name = "@timus-networks/theme";
|
|
14
|
-
const version = "2.4.
|
|
14
|
+
const version = "2.4.108";
|
|
15
15
|
const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
|
|
16
16
|
const type = "module";
|
|
17
17
|
const exports = {
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
const match = line.match(/^\s*/);
|
|
36
36
|
const indent = match ? match[0].length : 0;
|
|
37
37
|
|
|
38
|
-
return line
|
|
38
|
+
return line?.trim?.() ? Math.min(min, indent) : min;
|
|
39
39
|
}, Infinity);
|
|
40
40
|
|
|
41
41
|
return lines
|
|
42
|
-
.filter((line) => line
|
|
42
|
+
.filter((line) => line?.trim?.() !== '') // Remove empty lines
|
|
43
43
|
.map((line) => {
|
|
44
|
-
const trimmedLine = line
|
|
44
|
+
const trimmedLine = line?.trim?.();
|
|
45
45
|
const match = line.match(/^\s*/);
|
|
46
46
|
const lineIndent = match ? match[0].length : 0;
|
|
47
47
|
const indent = Math.max(0, lineIndent - baseIndent);
|
package/package.json
CHANGED