Skip to content

Commit

Permalink
Update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
SBoudrias committed Mar 11, 2023
1 parent 5abca33 commit d0e2899
Show file tree
Hide file tree
Showing 5 changed files with 1,079 additions and 1,362 deletions.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,29 +46,29 @@
"zsh"
],
"devDependencies": {
"@jest/globals": "^29.3.0",
"@jest/globals": "^29.5.0",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/jest": "^29.2.6",
"@types/jest": "^29.4.0",
"@types/mute-stream": "^0.0.1",
"@types/node": "^18.11.18",
"@types/node": "^18.15.0",
"@types/wrap-ansi": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^45.0.2",
"eslint-plugin-unicorn": "^46.0.0",
"globby": "^13.1.3",
"husky": "^8.0.3",
"jest": "^29.3.0",
"lerna": "^6.4.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"jest": "^29.5.0",
"lerna": "^6.5.1",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
"typescript": "^4.9.5"
},
"workspaces": [
"packages/*"
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,16 @@
"run-async": "^2.3.0",
"string-width": "^5.1.2",
"strip-ansi": "^7.0.1",
"wrap-ansi": "^8.0.1"
"wrap-ansi": "^8.1.0"
},
"devDependencies": {
"@inquirer/testing": "^0.0.5-alpha.0",
"@jest/globals": "^29.3.0"
"@jest/globals": "^29.5.0"
},
"scripts": {
"tsc": "tsc"
},
"publishConfig": {
"access": "public"
}
}
}
1 change: 0 additions & 1 deletion packages/core/src/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import wrapAnsi from 'wrap-ansi';
export const breakLines = (content: string, width: number): string =>
content
.split('\n')
// @ts-expect-error broken type check from library
.map((line) => wrapAnsi(line, width, { trim: false, hard: true }).split('\n'))
.flat()
.join('\n');
4 changes: 2 additions & 2 deletions packages/inquirer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@
"string-width": "^5.1.2",
"strip-ansi": "^7.0.1",
"through": "^2.3.6",
"wrap-ansi": "^8.0.1"
"wrap-ansi": "^8.1.0"
}
}
}
Loading

0 comments on commit d0e2899

Please sign in to comment.