Skip to content

Commit 5da5ea6

Browse files
committed
Fix non-zero exit codes
1 parent db56a05 commit 5da5ea6

File tree

2 files changed

+32
-18
lines changed

2 files changed

+32
-18
lines changed

lib/index.mjs

+11-12
Original file line numberDiff line numberDiff line change
@@ -138,22 +138,22 @@ const lint = async (additionalArgs = []) =>
138138
await promises.copyFile(path.join(__dirname, 'configs/eslint.json'), eslintrcJson);
139139
}
140140

141+
const cleanup = async () =>
142+
{
143+
if (!isDefined)
144+
{
145+
await promises.unlink(eslintrcJson);
146+
}
147+
};
148+
141149
await spawn('eslint', [
142150
'--ext', '.ts',
143151
'--ext', '.js',
144152
'--ext', '.mjs',
145153
'--no-error-on-unmatched-pattern',
146154
...extensionConfig.lint,
147155
...additionalArgs,
148-
], {
149-
onClose: async () =>
150-
{
151-
if (!isDefined)
152-
{
153-
await promises.unlink(eslintrcJson);
154-
}
155-
}
156-
});
156+
], cleanup);
157157
};
158158

159159
/** Open the exmaples folder */
@@ -181,11 +181,10 @@ const docs = async () =>
181181
const templateConfig = path.join(__dirname, 'configs/webdoc.json');
182182
const webdocConfig = path.join(process.cwd(), '.webdoc.json');
183183
const contents = await promises.readFile(templateConfig, 'utf8');
184+
const cleanup = async () => await promises.unlink(webdocConfig);
184185

185186
await promises.writeFile(webdocConfig, template(contents, extensionConfig), 'utf8');
186-
await spawn('webdoc', ['-c', webdocConfig], {
187-
onClose: async () => await promises.unlink(webdocConfig),
188-
});
187+
await spawn('webdoc', ['-c', webdocConfig], cleanup);
189188
};
190189

191190
/** Clean up the package contents */

lib/utils/spawn.mjs

+21-6
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,15 @@ import { prefix } from './prefix.mjs';
66

77
const projectPath = path.join(process.cwd());
88

9-
/** Utility to do spawn but as a Promise */
10-
export const spawn = (command, args, { onClose, ...options } = {}) =>
11-
new Promise((resolve, reject) =>
9+
/**
10+
* Utility to do spawn but as a Promise
11+
* @param {string} command - Command to run
12+
* @param {string[]} args - Arguments for the command
13+
* @param {Function} [onClose] - Function to run when the process closes or errors
14+
* this is useful for cleaning up temporary files even if the process errors.
15+
*/
16+
export const spawn = (command, args, onClose) =>
17+
new Promise((resolve) =>
1218
{
1319
if (!extensionConfig.silent)
1420
{
@@ -20,18 +26,27 @@ export const spawn = (command, args, { onClose, ...options } = {}) =>
2026
stdio: 'inherit',
2127
// See https://nodejs.org/api/child_process.html#spawning-bat-and-cmd-files-on-windows
2228
shell: process.platform.startsWith('win'),
23-
...options,
29+
env: process.env,
2430
});
2531

26-
child.on('close', async (code) =>
32+
child.once('close', async (code) =>
2733
{
2834
await onClose?.();
2935

3036
if (code === 0)
3137
{
3238
resolve();
3339
}
40+
else
41+
{
42+
process.exit(code);
43+
}
44+
});
45+
child.once('error', async () =>
46+
{
47+
await onClose?.();
48+
49+
process.exit(1);
3450
});
35-
child.on('error', reject);
3651
});
3752

0 commit comments

Comments
 (0)