drizzle-orm 0.25.0 → 0.25.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/package.json +132 -2
- package/version.cjs +1 -1
- package/version.d.ts +1 -1
- package/version.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzle-orm",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.1",
|
|
4
4
|
"description": "Drizzle ORM package for SQL databases",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"b": "pnpm build",
|
|
9
9
|
"test:types": "cd type-tests && tsc",
|
|
10
10
|
"test": "vitest run",
|
|
11
|
-
"pack": "
|
|
11
|
+
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
|
|
12
12
|
"publish": "npm publish package.tgz"
|
|
13
13
|
},
|
|
14
14
|
"main": "./index.cjs",
|
|
@@ -144,5 +144,135 @@
|
|
|
144
144
|
"vitest": "^0.29.8",
|
|
145
145
|
"zod": "^3.20.2",
|
|
146
146
|
"zx": "^7.2.1"
|
|
147
|
+
},
|
|
148
|
+
"exports": {
|
|
149
|
+
".": {
|
|
150
|
+
"import": "./index.mjs",
|
|
151
|
+
"require": "./index.cjs"
|
|
152
|
+
},
|
|
153
|
+
"./aws-data-api/pg": {
|
|
154
|
+
"import": "./aws-data-api/pg/index.mjs",
|
|
155
|
+
"require": "./aws-data-api/pg/index.cjs"
|
|
156
|
+
},
|
|
157
|
+
"./aws-data-api/pg/migrator": {
|
|
158
|
+
"import": "./aws-data-api/pg/migrator.mjs",
|
|
159
|
+
"require": "./aws-data-api/pg/migrator.cjs"
|
|
160
|
+
},
|
|
161
|
+
"./better-sqlite3": {
|
|
162
|
+
"import": "./better-sqlite3/index.mjs",
|
|
163
|
+
"require": "./better-sqlite3/index.cjs"
|
|
164
|
+
},
|
|
165
|
+
"./better-sqlite3/migrator": {
|
|
166
|
+
"import": "./better-sqlite3/migrator.mjs",
|
|
167
|
+
"require": "./better-sqlite3/migrator.cjs"
|
|
168
|
+
},
|
|
169
|
+
"./bun-sqlite": {
|
|
170
|
+
"import": "./bun-sqlite/index.mjs",
|
|
171
|
+
"require": "./bun-sqlite/index.cjs"
|
|
172
|
+
},
|
|
173
|
+
"./bun-sqlite/migrator": {
|
|
174
|
+
"import": "./bun-sqlite/migrator.mjs",
|
|
175
|
+
"require": "./bun-sqlite/migrator.cjs"
|
|
176
|
+
},
|
|
177
|
+
"./d1": {
|
|
178
|
+
"import": "./d1/index.mjs",
|
|
179
|
+
"require": "./d1/index.cjs"
|
|
180
|
+
},
|
|
181
|
+
"./d1/migrator": {
|
|
182
|
+
"import": "./d1/migrator.mjs",
|
|
183
|
+
"require": "./d1/migrator.cjs"
|
|
184
|
+
},
|
|
185
|
+
"./knex": {
|
|
186
|
+
"import": "./knex/index.mjs",
|
|
187
|
+
"require": "./knex/index.cjs"
|
|
188
|
+
},
|
|
189
|
+
"./kysely": {
|
|
190
|
+
"import": "./kysely/index.mjs",
|
|
191
|
+
"require": "./kysely/index.cjs"
|
|
192
|
+
},
|
|
193
|
+
"./libsql": {
|
|
194
|
+
"import": "./libsql/index.mjs",
|
|
195
|
+
"require": "./libsql/index.cjs"
|
|
196
|
+
},
|
|
197
|
+
"./libsql/migrator": {
|
|
198
|
+
"import": "./libsql/migrator.mjs",
|
|
199
|
+
"require": "./libsql/migrator.cjs"
|
|
200
|
+
},
|
|
201
|
+
"./mysql-core": {
|
|
202
|
+
"import": "./mysql-core/index.mjs",
|
|
203
|
+
"require": "./mysql-core/index.cjs"
|
|
204
|
+
},
|
|
205
|
+
"./mysql2": {
|
|
206
|
+
"import": "./mysql2/index.mjs",
|
|
207
|
+
"require": "./mysql2/index.cjs"
|
|
208
|
+
},
|
|
209
|
+
"./mysql2/migrator": {
|
|
210
|
+
"import": "./mysql2/migrator.mjs",
|
|
211
|
+
"require": "./mysql2/migrator.cjs"
|
|
212
|
+
},
|
|
213
|
+
"./neon-serverless": {
|
|
214
|
+
"import": "./neon-serverless/index.mjs",
|
|
215
|
+
"require": "./neon-serverless/index.cjs"
|
|
216
|
+
},
|
|
217
|
+
"./neon-serverless/migrator": {
|
|
218
|
+
"import": "./neon-serverless/migrator.mjs",
|
|
219
|
+
"require": "./neon-serverless/migrator.cjs"
|
|
220
|
+
},
|
|
221
|
+
"./node-postgres": {
|
|
222
|
+
"import": "./node-postgres/index.mjs",
|
|
223
|
+
"require": "./node-postgres/index.cjs"
|
|
224
|
+
},
|
|
225
|
+
"./node-postgres/migrator": {
|
|
226
|
+
"import": "./node-postgres/migrator.mjs",
|
|
227
|
+
"require": "./node-postgres/migrator.cjs"
|
|
228
|
+
},
|
|
229
|
+
"./pg-core": {
|
|
230
|
+
"import": "./pg-core/index.mjs",
|
|
231
|
+
"require": "./pg-core/index.cjs"
|
|
232
|
+
},
|
|
233
|
+
"./planetscale-serverless": {
|
|
234
|
+
"import": "./planetscale-serverless/index.mjs",
|
|
235
|
+
"require": "./planetscale-serverless/index.cjs"
|
|
236
|
+
},
|
|
237
|
+
"./planetscale-serverless/migrator": {
|
|
238
|
+
"import": "./planetscale-serverless/migrator.mjs",
|
|
239
|
+
"require": "./planetscale-serverless/migrator.cjs"
|
|
240
|
+
},
|
|
241
|
+
"./postgres-js": {
|
|
242
|
+
"import": "./postgres-js/index.mjs",
|
|
243
|
+
"require": "./postgres-js/index.cjs"
|
|
244
|
+
},
|
|
245
|
+
"./postgres-js/migrator": {
|
|
246
|
+
"import": "./postgres-js/migrator.mjs",
|
|
247
|
+
"require": "./postgres-js/migrator.cjs"
|
|
248
|
+
},
|
|
249
|
+
"./sql-js": {
|
|
250
|
+
"import": "./sql-js/index.mjs",
|
|
251
|
+
"require": "./sql-js/index.cjs"
|
|
252
|
+
},
|
|
253
|
+
"./sql-js/migrator": {
|
|
254
|
+
"import": "./sql-js/migrator.mjs",
|
|
255
|
+
"require": "./sql-js/migrator.cjs"
|
|
256
|
+
},
|
|
257
|
+
"./sqlite-core": {
|
|
258
|
+
"import": "./sqlite-core/index.mjs",
|
|
259
|
+
"require": "./sqlite-core/index.cjs"
|
|
260
|
+
},
|
|
261
|
+
"./sqlite-proxy": {
|
|
262
|
+
"import": "./sqlite-proxy/index.mjs",
|
|
263
|
+
"require": "./sqlite-proxy/index.cjs"
|
|
264
|
+
},
|
|
265
|
+
"./sqlite-proxy/migrator": {
|
|
266
|
+
"import": "./sqlite-proxy/migrator.mjs",
|
|
267
|
+
"require": "./sqlite-proxy/migrator.cjs"
|
|
268
|
+
},
|
|
269
|
+
"./migrator": {
|
|
270
|
+
"import": "./migrator.mjs",
|
|
271
|
+
"require": "./migrator.cjs"
|
|
272
|
+
},
|
|
273
|
+
"./version": {
|
|
274
|
+
"import": "./version.mjs",
|
|
275
|
+
"require": "./version.cjs"
|
|
276
|
+
}
|
|
147
277
|
}
|
|
148
278
|
}
|
package/version.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";exports.compatibilityVersion=4,exports.npmVersion="0.25.
|
|
1
|
+
"use strict";exports.compatibilityVersion=4,exports.npmVersion="0.25.1";
|
|
2
2
|
//# sourceMappingURL=version.cjs.map
|
package/version.d.ts
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const n="0.25.
|
|
1
|
+
const n="0.25.1",o=4;export{o as compatibilityVersion,n as npmVersion};
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|