@plumeria/vite-plugin 7.5.1 → 7.5.2
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.js +1 -4
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -92,7 +92,7 @@ export function plumeria(options = {}) {
|
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
|
-
const scannedTables = scanAll(
|
|
95
|
+
const scannedTables = scanAll();
|
|
96
96
|
const localConsts = collectLocalConsts(ast);
|
|
97
97
|
const resourcePath = id;
|
|
98
98
|
const importMap = {};
|
|
@@ -235,9 +235,6 @@ export function plumeria(options = {}) {
|
|
|
235
235
|
const processedDecls = new Set();
|
|
236
236
|
const idSpans = new Set();
|
|
237
237
|
const excludedSpans = new Set();
|
|
238
|
-
if (scannedTables.extractedSheet) {
|
|
239
|
-
addSheet(scannedTables.extractedSheet);
|
|
240
|
-
}
|
|
241
238
|
const checkVariantAssignment = (decl) => {
|
|
242
239
|
if (decl.init &&
|
|
243
240
|
t.isCallExpression(decl.init) &&
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plumeria/vite-plugin",
|
|
3
|
-
"version": "7.5.
|
|
3
|
+
"version": "7.5.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Plumeria Vite plugin",
|
|
6
6
|
"author": "Refirst 11",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dist/"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@plumeria/utils": "^7.5.
|
|
25
|
+
"@plumeria/utils": "^7.5.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@swc/core": "1.15.8",
|