Merge pull request #38 from aleleba/PR-689102

PR-689102: fix npx.
This commit is contained in:
Alejandro Lembke Barrientos 2022-08-04 15:51:18 -06:00 committed by GitHub
commit 973a098ab6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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",