tempest-db-js 0.7.0 → 0.8.0
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/README.md +1 -0
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +2 -2
- package/dist/{chunk-SI4CLSF7.js → chunk-MF6O56RO.js} +3 -3
- package/dist/{chunk-SI4CLSF7.js.map → chunk-MF6O56RO.js.map} +1 -1
- package/dist/{chunk-4AWUP7BM.js → chunk-NH6K5LTX.js} +106 -10
- package/dist/chunk-NH6K5LTX.js.map +1 -0
- package/dist/index.cjs +104 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +50 -2
- package/dist/index.d.ts +50 -2
- package/dist/index.js +1 -1
- package/dist/migrations/index.cjs.map +1 -1
- package/dist/migrations/index.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-4AWUP7BM.js.map +0 -1
package/dist/bin.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { runMigrationCli, diffSchema, replaySchema, reflectSchema, detectRenames } from './chunk-
|
|
3
|
-
import './chunk-
|
|
2
|
+
import { runMigrationCli, diffSchema, replaySchema, reflectSchema, detectRenames } from './chunk-MF6O56RO.js';
|
|
3
|
+
import './chunk-NH6K5LTX.js';
|
|
4
4
|
import { existsSync } from 'fs';
|
|
5
5
|
import { resolve } from 'path';
|
|
6
6
|
import { createInterface } from 'readline/promises';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { renderPortableToken, columnNamesOf, columnsOf, toAsyncDriver } from './chunk-
|
|
1
|
+
import { renderPortableToken, columnNamesOf, columnsOf, toAsyncDriver } from './chunk-NH6K5LTX.js';
|
|
2
2
|
|
|
3
3
|
// src/migrations/operations.ts
|
|
4
4
|
var IrreversibleMigration = class extends Error {
|
|
@@ -1682,5 +1682,5 @@ async function runMigrationCli(argv, config) {
|
|
|
1682
1682
|
}
|
|
1683
1683
|
|
|
1684
1684
|
export { AsyncMigrationRunner, CyclicMigrationGraph, IrreversibleMigration, MigrationRunner, Op, UnknownRevision, applyOperation, applyRenames, checkDrift, checkDriftAsync, checkDriftPostgres, compareSqliteSchemas, defineMigrationConfig, detectRenames, diffSchema, emptySchema, generateMigration, heads, introspectPostgres, introspectSqlite, introspectSqliteAsync, invert, invertAll, makeRevisionId, reflectSchema, reflectTable, renderColumnDef, renderColumnType, renderDefault, renderOperation, replaySchema, runMigrationCli, sqliteAffinity, topoOrder };
|
|
1685
|
-
//# sourceMappingURL=chunk-
|
|
1686
|
-
//# sourceMappingURL=chunk-
|
|
1685
|
+
//# sourceMappingURL=chunk-MF6O56RO.js.map
|
|
1686
|
+
//# sourceMappingURL=chunk-MF6O56RO.js.map
|