PR-689102: fix npx.

This commit is contained in:
Alejandro Lembke Barrientos 2022-08-04 21:46:31 +00:00
parent af7e0778df
commit 585e32d43f
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ const runCommand = command => {
const runCommandWithOutput = command => {
try{
return execSync(`${command}`, {stdio: 'inherit'});
return execSync(`${command}`);
} catch (e) {
console.error(`Failed to execute ${command}`, e);
return false;

View File

@ -1,6 +1,6 @@
{
"name": "@aleleba/create-react-ssr",
"version": "3.0.33",
"version": "3.0.34",
"description": "Starter Kit of server side render of react",
"bin": "./bin/cli.js",
"main": "src/server/index",