Skip to content

Commit

Permalink
chore(package): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Sep 1, 2019
1 parent 7465792 commit 40d1e23
Show file tree
Hide file tree
Showing 16 changed files with 26 additions and 26 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,36 +28,36 @@
},
"homepage": "https://github.com/adonisjs/adonis-lucid#readme",
"dependencies": {
"@poppinss/logger": "^1.1.2",
"@poppinss/profiler": "^1.1.0",
"@poppinss/logger": "^1.1.3",
"@poppinss/profiler": "^1.1.1",
"@poppinss/traits": "^1.0.0",
"@poppinss/utils": "^1.0.4",
"knex": "^0.19.2",
"@poppinss/utils": "^1.0.5",
"knex": "^0.19.3",
"knex-dynamic-connection": "^1.0.0",
"ts-essentials": "^3.0.2"
},
"devDependencies": {
"@adonisjs/mrm-preset": "^2.0.3",
"@poppinss/dev-utils": "^1.0.0",
"@adonisjs/mrm-preset": "^2.1.0",
"@poppinss/dev-utils": "^1.0.1",
"@types/dotenv": "^6.1.1",
"@types/node": "^12.7.2",
"@types/node": "^12.7.3",
"clone": "^2.1.2",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"del-cli": "^2.0.0",
"doctoc": "^1.4.0",
"dotenv": "^8.1.0",
"husky": "^3.0.4",
"japa": "^2.0.10",
"japa": "^3.0.0",
"mrm": "^1.2.2",
"mysql": "^2.17.1",
"pg": "^7.12.1",
"pkg-ok": "^2.3.1",
"sqlite3": "^4.1.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint": "^5.19.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.5.3"
"typescript": "^3.6.2"
},
"publishConfig": {
"tag": "next",
Expand Down
2 changes: 1 addition & 1 deletion src/Connection/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

/// <reference path="../../adonis-typings/database.ts" />

import knex from 'knex'
import { Pool } from 'tarn'
import * as knex from 'knex'
import { EventEmitter } from 'events'
import { Exception } from '@poppinss/utils'
import { LoggerContract } from '@poppinss/logger'
Expand Down
2 changes: 1 addition & 1 deletion src/Database/QueryBuilder/Chainable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../../../adonis-typings/database.ts" />

import * as knex from 'knex'
import knex from 'knex'
import { ChainableContract, QueryCallback } from '@ioc:Adonis/Lucid/DatabaseQueryBuilder'

import { RawQueryBuilder } from './Raw'
Expand Down
2 changes: 1 addition & 1 deletion src/Database/QueryBuilder/Database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../../../adonis-typings/database.ts" />

import * as knex from 'knex'
import knex from 'knex'
import { Exception } from '@poppinss/utils'
import { trait } from '@poppinss/traits'

Expand Down
2 changes: 1 addition & 1 deletion src/Database/QueryBuilder/Insert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../../../adonis-typings/database.ts" />

import * as knex from 'knex'
import knex from 'knex'
import { trait } from '@poppinss/traits'

import { QueryClientContract } from '@ioc:Adonis/Lucid/Database'
Expand Down
2 changes: 1 addition & 1 deletion src/Database/QueryBuilder/Raw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../../../adonis-typings/database.ts" />

import * as knex from 'knex'
import knex from 'knex'
import { trait } from '@poppinss/traits'

import { QueryClientContract } from '@ioc:Adonis/Lucid/Database'
Expand Down
2 changes: 1 addition & 1 deletion src/Database/QueryClient/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../../../adonis-typings/database.ts" />

import * as knex from 'knex'
import knex from 'knex'
import { Exception } from '@poppinss/utils'
import { resolveClientNameWithAliases } from 'knex/lib/helpers'
import { ProfilerRowContract, ProfilerContract } from '@poppinss/profiler'
Expand Down
2 changes: 1 addition & 1 deletion src/Database/TransactionClient/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../../../adonis-typings/database.ts" />

import * as knex from 'knex'
import knex from 'knex'
import { TransactionClientContract } from '@ioc:Adonis/Lucid/Database'
import { ProfilerRowContract, ProfilerContract } from '@poppinss/profiler'

Expand Down
4 changes: 2 additions & 2 deletions test-helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
/// <reference path="../adonis-typings/database.ts" />

import { join } from 'path'
import * as knex from 'knex'
import * as dotenv from 'dotenv'
import knex from 'knex'
import dotenv from 'dotenv'
import { FakeLogger } from '@poppinss/logger'
import { Profiler } from '@poppinss/profiler'
import { Filesystem } from '@poppinss/dev-utils'
Expand Down
2 changes: 1 addition & 1 deletion test/connection-manager.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../adonis-typings/database.ts" />

import * as test from 'japa'
import test from 'japa'

import { ConnectionManager } from '../src/Connection/Manager'
import { getConfig, setup, cleanup, getLogger } from '../test-helpers'
Expand Down
2 changes: 1 addition & 1 deletion test/connection.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../adonis-typings/database.ts" />

import * as test from 'japa'
import test from 'japa'
import { MysqlConfigContract } from '@ioc:Adonis/Lucid/Database'

import { Connection } from '../src/Connection'
Expand Down
2 changes: 1 addition & 1 deletion test/database.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../adonis-typings/database.ts" />

import * as test from 'japa'
import test from 'japa'

import { Database } from '../src/Database'
import { getConfig, setup, cleanup, getLogger, getProfiler } from '../test-helpers'
Expand Down
2 changes: 1 addition & 1 deletion test/insert-query-builder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../adonis-typings/database.ts" />

import * as test from 'japa'
import test from 'japa'

import { Connection } from '../src/Connection'
import { getConfig, setup, cleanup, getInsertBuilder, getLogger } from '../test-helpers'
Expand Down
2 changes: 1 addition & 1 deletion test/query-builder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../adonis-typings/database.ts" />

import * as test from 'japa'
import test from 'japa'
import { Connection } from '../src/Connection'
import { DatabaseQueryBuilder } from '../src/Database/QueryBuilder/Database'
import {
Expand Down
2 changes: 1 addition & 1 deletion test/query-client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../adonis-typings/database.ts" />

import * as test from 'japa'
import test from 'japa'
import { Connection } from '../src/Connection'
import { getConfig, setup, cleanup, getLogger } from '../test-helpers'

Expand Down
2 changes: 1 addition & 1 deletion test/transactions.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/// <reference path="../adonis-typings/database.ts" />

import * as test from 'japa'
import test from 'japa'

import { Connection } from '../src/Connection'
import { getConfig, setup, cleanup, resetTables, getLogger } from '../test-helpers'
Expand Down

0 comments on commit 40d1e23

Please sign in to comment.