circle-rhyme-yes-measure
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -63,3 +63,6 @@ import { sql } from "drizzle-orm"; | ||
function collectionToTable(name, collection, isJsonSerializable = true) { | ||
const columns = initialColumns; | ||
const columns = { | ||
// Spread to avoid mutating `initialColumns` | ||
...initialColumns | ||
}; | ||
for (const [fieldName, field] of Object.entries(collection.fields)) { | ||
@@ -66,0 +69,0 @@ columns[fieldName] = columnMapper(fieldName, field, isJsonSerializable); |
{ | ||
"name": "circle-rhyme-yes-measure", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"type": "module", | ||
@@ -26,13 +26,13 @@ "license": "UNLICENSED", | ||
"drizzle-orm": "^0.28.6", | ||
"nanoid": "^4.0.2", | ||
"zod": "^3.22.2" | ||
"nanoid": "^5.0.1", | ||
"zod": "^3.22.4" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.2.2", | ||
"@packages/scripts": "^0.0.0" | ||
}, | ||
"scripts": { | ||
"build": "studio-scripts build \"src/**/*.ts\" && tsc", | ||
"dev": "studio-scripts dev \"src/**/*.ts\"", | ||
"typecheck": "tsc --noEmit" | ||
"build": "studio-scripts build \"src/**/*.ts\" && tsc -b", | ||
"dev": "studio-scripts dev \"src/**/*.ts\"" | ||
} | ||
} |
33922
1047
2
+ Addednanoid@5.1.0(transitive)
- Removednanoid@4.0.2(transitive)
Updatednanoid@^5.0.1
Updatedzod@^3.22.4