@drzl/analyzer 1.5.0 → 1.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.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +4 -4
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({
|
|
@@ -570,7 +570,7 @@ var SchemaAnalyzer = class {
|
|
|
570
570
|
let dialect = "unknown";
|
|
571
571
|
const ctorNames = /* @__PURE__ */ new Set();
|
|
572
572
|
for (const [_, val] of Object.entries(exportsObj)) {
|
|
573
|
-
const cols = val?.[Symbol.for("drizzle:Columns")];
|
|
573
|
+
const cols = val?.[/* @__PURE__ */ Symbol.for("drizzle:Columns")];
|
|
574
574
|
if (cols) {
|
|
575
575
|
for (const c of Object.values(cols)) {
|
|
576
576
|
const n = c?.constructor?.name;
|
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({
|
|
@@ -534,7 +534,7 @@ var SchemaAnalyzer = class {
|
|
|
534
534
|
let dialect = "unknown";
|
|
535
535
|
const ctorNames = /* @__PURE__ */ new Set();
|
|
536
536
|
for (const [_, val] of Object.entries(exportsObj)) {
|
|
537
|
-
const cols = val?.[Symbol.for("drizzle:Columns")];
|
|
537
|
+
const cols = val?.[/* @__PURE__ */ Symbol.for("drizzle:Columns")];
|
|
538
538
|
if (cols) {
|
|
539
539
|
for (const c of Object.values(cols)) {
|
|
540
540
|
const n = c?.constructor?.name;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@drzl/analyzer",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
],
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"jiti": "^2.
|
|
21
|
+
"jiti": "^2.7.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"drizzle-orm": "^0.45.2",
|
|
25
|
-
"tsup": "^8.5.
|
|
26
|
-
"typescript": "^5.9.
|
|
25
|
+
"tsup": "^8.5.1",
|
|
26
|
+
"typescript": "^5.9.3"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
29
|
"node": ">=18.17.0"
|