kirbyup 1.3.1 → 1.3.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/chunks/index.mjs +2 -2
- package/package.json +1 -1
package/dist/chunks/index.mjs
CHANGED
|
@@ -3268,7 +3268,7 @@ function vuePlugin(rawOptions = {}) {
|
|
|
3268
3268
|
}
|
|
3269
3269
|
|
|
3270
3270
|
const name = "kirbyup";
|
|
3271
|
-
const version = "1.3.
|
|
3271
|
+
const version = "1.3.2";
|
|
3272
3272
|
|
|
3273
3273
|
class PrettyError extends Error {
|
|
3274
3274
|
constructor(message) {
|
|
@@ -3366,7 +3366,7 @@ function kirbyupAutoImportPlugin() {
|
|
|
3366
3366
|
const { 0: exp, 1: rawPath, index } = match;
|
|
3367
3367
|
if (!s)
|
|
3368
3368
|
s = new MagicString(code);
|
|
3369
|
-
s.overwrite(index, index + exp.length, `kirbyup.import(import.meta.
|
|
3369
|
+
s.overwrite(index, index + exp.length, `kirbyup.import(import.meta.glob(${rawPath}, { eager: true }))`);
|
|
3370
3370
|
}
|
|
3371
3371
|
if (s) {
|
|
3372
3372
|
return {
|