Skip to content

Commit

Permalink
Refactored types (#519)
Browse files Browse the repository at this point in the history
* Refactored types

* Fixed import
  • Loading branch information
dolezel authored Nov 25, 2019
1 parent 52f4c84 commit c159f43
Show file tree
Hide file tree
Showing 47 changed files with 1,449 additions and 1,502 deletions.
2 changes: 0 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ module.exports = {
'no-underscore-dangle': 0,
'security/detect-object-injection': 0,
'@typescript-eslint/explicit-function-return-type': 0,
'import/no-cycle': 0,
'@typescript-eslint/no-explicit-any': 0,
'import/no-duplicates': 0,
},
overrides: [
{
Expand Down
4 changes: 1 addition & 3 deletions bin/node-pg-migrate
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ const util = require('util')
const path = require('path')
const yargs = require('yargs')
const ConnectionParameters = require('pg/lib/connection-parameters')
const migrationRunner = require('../index')

const { Migration } = migrationRunner
const { default: migrationRunner, Migration } = require('../dist')

process.on('uncaughtException', err => {
console.log(err.stack)
Expand Down
Loading

0 comments on commit c159f43

Please sign in to comment.