Skip to content

Commit

Permalink
fix(deps): update dependencies
Browse files Browse the repository at this point in the history
BREAKING CHANGE: require Node.js 16+
  • Loading branch information
rbardini committed Jul 22, 2023
1 parent 66018e5 commit 6df9f45
Show file tree
Hide file tree
Showing 6 changed files with 2,022 additions and 5,559 deletions.
3 changes: 1 addition & 2 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"trailingComma": "all"
"singleQuote": true
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Ensure incremental coverage gains are not lost, and positively reinforce good te

## Requirements

- Node.js 12+
- Node.js 16+
- Conventional `jest.config.js` (`package.json` config unsupported)
- `json-summary` coverage report (see [usage](#usage))

Expand Down
2 changes: 1 addition & 1 deletion lib/__tests__/index.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const confirm = require('@inquirer/confirm')
const confirm = require('@inquirer/confirm').default

const applyChanges = require('../applyChanges')
const getChanges = require('../getChanges')
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node
const path = require('path')
const confirm = require('@inquirer/confirm')
const confirm = require('@inquirer/confirm').default

const applyChanges = require('./applyChanges')
const getChanges = require('./getChanges')
Expand Down
Loading

0 comments on commit 6df9f45

Please sign in to comment.