@drzl/analyzer 1.5.0 → 1.5.1
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.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -503,7 +503,7 @@ var SchemaAnalyzer = class {
|
|
|
503
503
|
let mod;
|
|
504
504
|
try {
|
|
505
505
|
const { default: jiti } = await import("jiti");
|
|
506
|
-
const jit = jiti(import_meta.url);
|
|
506
|
+
const jit = jiti(import_meta.url, { moduleCache: false });
|
|
507
507
|
mod = jit(full);
|
|
508
508
|
} catch (e) {
|
|
509
509
|
issues.push({
|
package/dist/index.js
CHANGED
|
@@ -467,7 +467,7 @@ var SchemaAnalyzer = class {
|
|
|
467
467
|
let mod;
|
|
468
468
|
try {
|
|
469
469
|
const { default: jiti } = await import("jiti");
|
|
470
|
-
const jit = jiti(import.meta.url);
|
|
470
|
+
const jit = jiti(import.meta.url, { moduleCache: false });
|
|
471
471
|
mod = jit(full);
|
|
472
472
|
} catch (e) {
|
|
473
473
|
issues.push({
|