Files
react-native-jecnaapi/internal/module_scripts/util.js
T
jzitnik edb1d5fe82 Initial commit
Generated by create-expo-module 56.0.3.
2026-06-21 12:06:37 +02:00

11 lines
430 B
JavaScript

const { spawnSync } = require('child_process');
// On Windows, executables like `tsc` and `jest` are `.cmd` batch files and cannot be
// spawned directly — they require shell: true to resolve. On Unix, shell: true is
// unnecessary.
function spawnSyncWithAutoShell(command, args, options) {
return spawnSync(command, args, { ...options, shell: process.platform === 'win32' });
}
module.exports = { spawnSyncWithAutoShell };