diff --git a/src/util.ts b/src/util.ts index 5d3f624..6dd6a4d 100644 --- a/src/util.ts +++ b/src/util.ts @@ -6,7 +6,7 @@ export function createTempFile(content: string, options = {}): Promise { return new Promise((resolve, reject) => { tmp.file(options, (err, path) => { if (err) return reject(err) - fs.writeFile(path, content, 'utf8', err => { + fs.writeFile(path, content, { encoding: 'utf8' }, err => { if (err) return reject(err) resolve(path) })