@tsrx/vite-plugin-preact 0.0.89 → 0.0.91
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/package.json +3 -3
- package/src/index.js +3 -4
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Vite plugin for @tsrx/preact (.tsrx modules)",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Dominic Gannaway",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.91",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"publishConfig": {
|
|
9
9
|
"access": "public"
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@tsrx/core": "0.1.
|
|
24
|
-
"@tsrx/preact": "0.1.
|
|
23
|
+
"@tsrx/core": "0.1.66",
|
|
24
|
+
"@tsrx/preact": "0.1.66"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"vite": "*"
|
package/src/index.js
CHANGED
|
@@ -122,10 +122,9 @@ export function tsrxPreact(options = {}) {
|
|
|
122
122
|
let source = tsx_code;
|
|
123
123
|
if (css) {
|
|
124
124
|
css_cache.set(id, css);
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
}
|
|
125
|
+
// After existing imports so dependency sheets (imported themes)
|
|
126
|
+
// evaluate first and this module's rules win at equal specificity.
|
|
127
|
+
source = `${tsx_code}\nimport ${JSON.stringify(id + CSS_QUERY)};\n`;
|
|
129
128
|
} else {
|
|
130
129
|
css_cache.delete(id);
|
|
131
130
|
}
|