@drzl/analyzer 1.5.1 → 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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -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
|
@@ -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"
|