@inquirer/testing 2.1.37 → 2.1.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -72,7 +72,7 @@ The core utility of `@inquirer/testing` is the `render()` function. This `render
72
72
  3. `events` (`{ keypress: (name | Key) => void, type: (string) => void }`) Is the utilities allowing you to interact with the prompt. Use it to trigger keypress events, or typing any input.
73
73
  4. `getFullOutput` (`() => string`) Return a raw dump of everything that got sent on the output stream.
74
74
 
75
- You can refer to [the `@inquirer/input` prompt test suite](https://github.com/SBoudrias/Inquirer.js/blob/main/packages/input/input.test.mts) as a practical example.
75
+ You can refer to [the `@inquirer/input` prompt test suite](https://github.com/SBoudrias/Inquirer.js/blob/main/packages/input/input.test.ts) as a practical example.
76
76
 
77
77
  # License
78
78
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inquirer/testing",
3
- "version": "2.1.37",
3
+ "version": "2.1.39",
4
4
  "description": "Inquirer testing utilities",
5
5
  "keywords": [
6
6
  "answer",
@@ -77,16 +77,16 @@
77
77
  "tsc": "tshy"
78
78
  },
79
79
  "dependencies": {
80
- "@inquirer/type": "^3.0.1",
80
+ "@inquirer/type": "^3.0.2",
81
81
  "ansi-escapes": "^4.3.2",
82
82
  "mute-stream": "^2.0.0",
83
83
  "strip-ansi": "^6.0.1"
84
84
  },
85
85
  "devDependencies": {
86
- "@arethetypeswrong/cli": "^0.17.0",
86
+ "@arethetypeswrong/cli": "^0.17.2",
87
87
  "@repo/tsconfig": "workspace:*",
88
88
  "@types/mute-stream": "^0.0.4",
89
- "@types/node": "^22.9.0",
89
+ "@types/node": "^22.10.2",
90
90
  "tshy": "^3.0.2"
91
91
  },
92
92
  "engines": {
@@ -104,5 +104,5 @@
104
104
  "peerDependencies": {
105
105
  "@types/node": ">=18"
106
106
  },
107
- "gitHead": "84e49bdb552e1cb4f035d644190913f367a66e74"
107
+ "gitHead": "7613d7474f1f17a18019b89f208f46be10c5b02f"
108
108
  }