From 99dff3655080e772c74e43a824e7f4e393cc2f61 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Thu, 4 Aug 2022 16:42:25 +0000 Subject: [PATCH] PR-214978: fixing npx. --- bin/cli.js | 2 -- package.json | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/cli.js b/bin/cli.js index 795a3de..3d35b86 100644 --- a/bin/cli.js +++ b/bin/cli.js @@ -29,8 +29,6 @@ const checkedOut = runCommand(gitCheckoutCommand); if(!checkedOut) process.exit(-1); const actualVersion = runCommandWithOutput(`cd ${repoName} && node -p "require('./package.json').version"`) -console.log(actualVersion) -if(!actualVersion) process.exit(-1); const installDepsCommand = `cd ${repoName} && npm install`; const cleanGitHistoryCommand = `cd ${repoName} && rm -rf .git && git init && git add --all -- ":!.github" ":!bin" && git commit -m "Initial commit"` diff --git a/package.json b/package.json index 4256894..1dafc72 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aleleba/create-react-ssr", - "version": "3.0.32", + "version": "3.0.33", "description": "Starter Kit of server side render of react", "bin": "./bin/cli.js", "main": "src/server/index",