@kimesh/tailwindcss 0.2.45 → 0.2.46
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/index.mjs +1 -4
- package/package.json +6 -6
package/dist/index.mjs
CHANGED
|
@@ -2,7 +2,6 @@ import { existsSync } from "node:fs";
|
|
|
2
2
|
import { join, relative } from "node:path";
|
|
3
3
|
import { addAlias, addTemplate, addVitePlugin, defineKimeshModule } from "@kimesh/kit";
|
|
4
4
|
import MagicString from "magic-string";
|
|
5
|
-
|
|
6
5
|
//#region src/transform.ts
|
|
7
6
|
/**
|
|
8
7
|
* Regex to match <style> blocks in Vue SFC files
|
|
@@ -91,7 +90,6 @@ function hasTailwindDirectives(content) {
|
|
|
91
90
|
function hasReferenceDirective(content) {
|
|
92
91
|
return EXISTING_REFERENCE_RE.test(content);
|
|
93
92
|
}
|
|
94
|
-
|
|
95
93
|
//#endregion
|
|
96
94
|
//#region src/module.ts
|
|
97
95
|
/**
|
|
@@ -195,6 +193,5 @@ var module_default = defineKimeshModule({
|
|
|
195
193
|
if (autoReference) addVitePlugin(createReferenceTransformer(effectiveReferenceAlias));
|
|
196
194
|
}
|
|
197
195
|
});
|
|
198
|
-
|
|
199
196
|
//#endregion
|
|
200
|
-
export { createReferenceTransformer, module_default as default, module_default as tailwindcss, hasReferenceDirective, hasTailwindDirectives };
|
|
197
|
+
export { createReferenceTransformer, module_default as default, module_default as tailwindcss, hasReferenceDirective, hasTailwindDirectives };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kimesh/tailwindcss",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.46",
|
|
4
4
|
"description": "TailwindCSS module for Kimesh framework",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"magic-string": "^0.30.21"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@kimesh/kit": "0.2.
|
|
35
|
-
"tsdown": "^0.
|
|
34
|
+
"@kimesh/kit": "0.2.46",
|
|
35
|
+
"tsdown": "^0.21.2",
|
|
36
36
|
"typescript": "^5.9.3",
|
|
37
|
-
"vite": "^8.0.0
|
|
37
|
+
"vite": "^8.0.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@kimesh/kit": "0.2.
|
|
40
|
+
"@kimesh/kit": "0.2.46",
|
|
41
41
|
"tailwindcss": "^4.0.0",
|
|
42
|
-
"vite": "^8.0.0
|
|
42
|
+
"vite": "^8.0.0"
|
|
43
43
|
}
|
|
44
44
|
}
|