Skip to content

Commit

Permalink
Merge pull request #68 from dexfs/feature/enhancement
Browse files Browse the repository at this point in the history
Update joi version and Change SQLite connection
  • Loading branch information
bsiddiqui committed Apr 8, 2019
2 parents 9c6f553 + dda1c61 commit c9109f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -17,7 +17,7 @@
},
"homepage": "https://github.com/bsiddiqui/bookshelf-modelbase",
"dependencies": {
"joi": "^9.0.4",
"joi": "^14.3.1",
"lodash.difference": "^4.4.0",
"xtend": "^4.0.1"
},
Expand Down
6 changes: 4 additions & 2 deletions test/knexfile.js
Expand Up @@ -4,9 +4,11 @@ var path = require('path')
module.exports = {
development: {
client: 'sqlite3',
connection: {
filename: path.resolve(__dirname, 'dev.sqlite3')
connection: ':memory:',
pool: {
size: 1
},
useNullAsDefault: true,
migrations: {
directory: path.resolve(__dirname, 'migrations')
}
Expand Down

0 comments on commit c9109f6

Please sign in to comment.