Updating packages.

This commit is contained in:
2022-06-10 15:00:12 +00:00
parent fdccd30bda
commit 2aacb68264
3 changed files with 836 additions and 1155 deletions

View File

@ -13,7 +13,7 @@ const runCommand = command => {
const repoName = process.argv[2];
const gitCheckoutCommand = `git clone --depth 1 https://github.com/aleleba/create-node-ts-graphql-server ${repoName}`;
const installDepsCommand = `cd ${repoName} && rm -rf .git && git init && git add . && git commit -m "Initial commit" && npm install`;
const installDepsCommand = `cd ${repoName} && rm -rf .git && git init && git add . && git commit -m "Initial commit" && npm install --legacy-peer-deps`;
console.log(`Cloning the repository with name ${repoName}`);
const checkedOut = runCommand(gitCheckoutCommand);