From c1feb9ad49c34f0ad27a665825e1db669493b795 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Fri, 5 Aug 2022 14:07:29 +0000 Subject: [PATCH] PR-661784: fix npx. --- bin/cli.js | 5 ++--- package.json | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/bin/cli.js b/bin/cli.js index 22caac1..bbda4d7 100644 --- a/bin/cli.js +++ b/bin/cli.js @@ -28,8 +28,7 @@ console.log(`Cloning the repository with name ${repoName}`); const checkedOut = runCommand(gitCheckoutCommand); if(!checkedOut) process.exit(-1); -const actualVersion = runCommandWithOutput(`cd ${repoName} && node -p "require('./package.json').version"`) -const actualVersionTrimmed = actualVersion.trim() +const actualVersion = runCommandWithOutput(`cd ${repoName} && node -p "require('./package.json').version"`).toString().trim() 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"` @@ -40,7 +39,7 @@ const deleteBinCommand = `cd ${repoName} && sed -i 's+"bin": "./bin/cli.js",++g' const deleteBinCommandWindows = `cd ${repoName} && copy package.json package2.json && del package.json && type package2.json | findstr /v cli.js > package.json && del package2.json` const deleteBinCommandApple = `cd ${repoName} && sed -i .copy 's+"bin": "./bin/cli.js",++g' package.json && sed -i .copy '/^[[:space:]]*$/d' package.json && rm -rf package.json.copy` -const replaceNewVersionCommand = `cd ${repoName} && sed -i 's+"version": "${actualVersionTrimmed}",+"version": "0.0.1",+g' package.json` +const replaceNewVersionCommand = `cd ${repoName} && sed -i 's+"version": "${actualVersion}",+"version": "0.0.1",+g' package.json` const replaceNameAppCommand = `cd ${repoName} && sed -i 's+"name": "@aleleba/create-react-ssr",+"name": "${repoName}",+g' package.json` console.log(`Installing dependencies for ${repoName}`); diff --git a/package.json b/package.json index ba1d342..5432732 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aleleba/create-react-ssr", - "version": "3.0.37", + "version": "3.0.38", "description": "Starter Kit of server side render of react", "bin": "./bin/cli.js", "main": "src/server/index",