Skip to content

Commit

Permalink
fix(deps): standard@17.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleytodd committed May 29, 2023
1 parent 09ef1f2 commit 36828fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/migrate-create
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function create (name) {
gen = require(path.resolve(program.generator))
}
gen({
name: name,
name,
dateFormat: program.dateFormat,
templateFile: program.templateFile,
migrationsDirectory: program.migrationsDir,
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ exports.load = function (options, fn) {
const set = new MigrationSet(store)

loadMigrationsIntoSet({
set: set,
store: store,
set,
store,
migrationsDirectory: opts.migrationsDirectory,
filterFunction: opts.filterFunction,
sortFunction: opts.sortFunction,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"devDependencies": {
"mocha": "^9.2.2",
"rimraf": "^5.0.1",
"standard": "^16.0.4"
"standard": "^17.0.0"
},
"main": "index",
"engines": {
Expand Down

0 comments on commit 36828fc

Please sign in to comment.