Skip to content

Commit c97de97

Browse files
committed
fix(spawnify) unicodify
1 parent 6a9d776 commit c97de97

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/spawnify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Spawnify.prototype._setListeners = function setListeners(child) {
191191

192192
if (child.stdout) {
193193
child.stdout
194-
.pipe(win.unicodify)
194+
.pipe(win.unicodify())
195195
.setEncoding('utf8')
196196
.on('data', (data) => {
197197
this._emit('data', data);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"tildify": "^2.0.0",
2626
"try-catch": "^3.0.0",
2727
"untildify": "^4.0.0",
28-
"win32": "^5.0.1"
28+
"win32": "^5.1.12"
2929
},
3030
"devDependencies": {
3131
"eslint": "^7.18.0",

0 commit comments

Comments
 (0)