Skip to content

Commit 77476b7

Browse files
committed
fix linting, update changelog
1 parent 71f965d commit 77476b7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- Added support for 2023 to the config file ([#226](https://github.com/beakerandjake/advent-of-code-runner/issues/226))
1111
### Fixed
1212
- Fix number of solvable problems to be 49 not 50 (day 25 only has one level) ([#224](https://github.com/beakerandjake/advent-of-code-runner/issues/224))
13-
13+
### Changed
14+
- Replaced inquirer package with @inquirer/prompts, will reduce package size. ([#230](https://github.com/beakerandjake/advent-of-code-runner/issues/230))
1415

1516
## [1.3.6] - 2023-08-23
1617
### Fixed

tests/cli/auth.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jest.unstable_mockModule('src/actions/actionChain.js', () => ({
1717
createChain: (links) => async (args) => {
1818
let currentArgs = args;
1919
for (const link of links) {
20+
// eslint-disable-next-line no-await-in-loop
2021
const result = await link(args);
2122
if (result === false) {
2223
break;

0 commit comments

Comments
 (0)