Skip to content

Commit

Permalink
feat: export the migration type (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
ForbesLindesay authored May 10, 2019
1 parent 680ed3a commit e30c559
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pg-migrations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@databases/pg-migrations",
"version": "0.0.3",
"version": "0.0.4",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions packages/pg-migrations/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Migration from './utils/Migration';
import Operation from './utils/Operation';
import MigrationSpec from './utils/MigrationSpec';
import MigrationStatus from './utils/MigrationStatus';
Expand All @@ -11,6 +12,7 @@ import MigrationsPackage from './utils/MigrationsPackage';
import {Connection, sql} from '@databases/pg';

export {
Migration,
MigrationSpec,
Operation,
MigrationsPackage,
Expand Down

0 comments on commit e30c559

Please sign in to comment.