mirror of
				https://github.com/aleleba/create-react-ssr.git
				synced 2025-11-03 15:39:57 -06:00 
			
		
		
		
	PR-281492: fix npx.
This commit is contained in:
		@@ -28,7 +28,7 @@ console.log(`Cloning the repository with name ${repoName}`);
 | 
				
			|||||||
const checkedOut = runCommand(gitCheckoutCommand);
 | 
					const checkedOut = runCommand(gitCheckoutCommand);
 | 
				
			||||||
if(!checkedOut) process.exit(-1);
 | 
					if(!checkedOut) process.exit(-1);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const actualVersion = runCommandWithOutput(`cd ${repoName} && node -p "require('./package.json').version"`)
 | 
					const actualVersion = runCommandWithOutput(`cd ${repoName} && node -p "require('./package.json').version"`).replace(/(\r\n|\n|\r)/gm, "");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const installDepsCommand = `cd ${repoName} && npm install`;
 | 
					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"`
 | 
					const cleanGitHistoryCommand = `cd ${repoName} && rm -rf .git && git init && git add --all -- ":!.github" ":!bin" && git commit -m "Initial commit"`
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,6 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "name": "@aleleba/create-react-ssr",
 | 
					  "name": "@aleleba/create-react-ssr",
 | 
				
			||||||
  "version": "3.0.34",
 | 
					  "version": "3.0.35",
 | 
				
			||||||
  "description": "Starter Kit of server side render of react",
 | 
					  "description": "Starter Kit of server side render of react",
 | 
				
			||||||
  "bin": "./bin/cli.js",  
 | 
					  "bin": "./bin/cli.js",  
 | 
				
			||||||
  "main": "src/server/index",
 | 
					  "main": "src/server/index",
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user