We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c59a9dc commit 8b1f19fCopy full SHA for 8b1f19f
lib/icon/module.js
@@ -219,7 +219,7 @@ async function resizeIcons (options) {
219
await fs.mkdirp(options.cacheDir)
220
221
await new Promise((resolve, reject) => {
222
- const child = fork(require.resolve('./resize'), [resizeOpts])
+ const child = fork(require.resolve('./resize'), [resizeOpts], { execArgv: [] })
223
child.on('exit', (code) => {
224
return code ? reject(code) : resolve()
225
})
0 commit comments