1
0
mirror of https://gitcode.com/gh_mirrors/re/react-native-pushy.git synced 2025-09-17 21:46:09 +08:00
Code Issues Packages Projects Releases Wiki Activity GitHub Gitee

Revert bundle command

This commit is contained in:
sunnylqm
2019-09-06 11:00:17 +08:00
parent 8a237845e2
commit c654022300

View File

@@ -56,7 +56,8 @@ async function runReactNativeBundleCommand(
fs.emptyDirSync(outputFolder);
Array.prototype.push.apply(reactNativeBundleArgs, [
'bundle',
path.join("node_modules", "react-native", "local-cli", "cli.js"),
"bundle",
'--assets-dest',
outputFolder,
'--bundle-output',
@@ -77,8 +78,8 @@ async function runReactNativeBundleCommand(
reactNativeBundleArgs.push('--config', config);
}
const reactNativeBundleProcess = spawn('react-native', reactNativeBundleArgs);
console.log(`Running bundle command: react-native ${reactNativeBundleArgs.join(' ')}`);
const reactNativeBundleProcess = spawn('node', reactNativeBundleArgs);
console.log(`Running bundle command: node ${reactNativeBundleArgs.join(' ')}`);
return new Promise((resolve, reject) => {
reactNativeBundleProcess.stdout.on('data', data => {