Skip to content

Commit

Permalink
Merge pull request #49 from aleleba/PR-839242
Browse files Browse the repository at this point in the history
PR-839242: Updating packages.
  • Loading branch information
aleleba authored Oct 29, 2024
2 parents 87dc241 + 6678104 commit 4a4e743
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ if(!checkedOut) process.exit(-1);

const actualVersion = runCommandWithOutput(`cd ${repoName} && node -p "require('./package.json').version"`).toString().trim()

const installDepsCommand = `cd ${repoName} && npm install --legacy-peer-deps`;
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 cleanGitHistoryCommandWindows = `cd ${repoName} && rmdir .git /s /q && git init && git add --all -- ":!.github" ":!bin" && git commit -m "Initial commit"`
const deleteFoldersCommand = `cd ${repoName} && rm -rf .github && rm -rf bin`
Expand Down
32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aleleba/create-react-component-library",
"version": "1.2.26",
"version": "1.2.27",
"description": "A starter kit for create a React component Library with storybook",
"bin": "./bin/cli.js",
"main": "dist/index.js",
Expand All @@ -13,7 +13,7 @@
"test:watch": "jest --watch",
"storybook": "storybook dev -p 3000",
"build-storybook": "storybook build",
"check-updates": "npx npm-check-updates -u && npm i --legacy-peer-deps",
"check-updates": "npx npm-check-updates -u --reject @types/cypress && npm i",
"cy:open": "npx cypress open",
"cy:run": "npx cypress run --headless --component"
},
Expand Down Expand Up @@ -60,7 +60,7 @@
"@testing-library/user-event": "^14.5.2",
"@types/cypress": "^0.1.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.1",
"@types/node": "^22.8.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/webpack": "^5.28.5",
Expand All @@ -83,7 +83,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resolve-ts-aliases": "^1.0.1",
"sass": "^1.80.4",
"sass": "^1.80.5",
"sass-loader": "^16.0.2",
"storybook": "^8.3.6",
"style-loader": "^4.0.0",
Expand Down

0 comments on commit 4a4e743

Please sign in to comment.