Merge pull request #45 from aleleba/PR-953428

PR-953428: Updating packages
This commit is contained in:
Alejandro Lembke Barrientos 2024-09-18 13:02:46 -06:00 committed by GitHub
commit 410dda1923
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2289 additions and 1939 deletions

View File

@ -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`;
const installDepsCommand = `cd ${repoName} && npm install --legacy-peer-deps`;
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`

4170
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@aleleba/create-react-component-library",
"version": "1.2.22",
"version": "1.2.23",
"description": "A starter kit for create a React component Library with storybook",
"bin": "./bin/cli.js",
"main": "dist/index.js",
@ -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",
"check-updates": "npx npm-check-updates -u && npm i --legacy-peer-deps",
"cy:open": "npx cypress open",
"cy:run": "npx cypress run --headless --component"
},
@ -41,34 +41,34 @@
"@babel/preset-typescript": "^7.24.7",
"@babel/register": "^7.24.6",
"@mdx-js/react": "^3.0.1",
"@storybook/addon-actions": "^8.2.9",
"@storybook/addon-docs": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/cli": "^8.2.9",
"@storybook/addon-actions": "^8.3.1",
"@storybook/addon-docs": "^8.3.1",
"@storybook/addon-essentials": "^8.3.1",
"@storybook/addon-interactions": "^8.3.1",
"@storybook/addon-links": "^8.3.1",
"@storybook/blocks": "^8.3.1",
"@storybook/cli": "^8.3.1",
"@storybook/mdx2-csf": "^1.1.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^8.2.9",
"@storybook/react-webpack5": "^8.2.9",
"@storybook/react": "^8.3.1",
"@storybook/react-webpack5": "^8.3.1",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.1",
"@types/react": "^18.3.4",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@types/webpack": "^5.28.5",
"babel-loader": "^9.1.3",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cypress": "^13.14.0",
"cypress": "^13.14.2",
"dotenv": "^16.4.5",
"eslint": "^9.9.1",
"eslint-plugin-react": "^7.35.0",
"eslint": "^9.10.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-storybook": "^0.8.0",
"eslint-webpack-plugin": "^4.2.0",
"html-webpack-plugin": "^5.6.0",
@ -80,15 +80,15 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resolve-ts-aliases": "^1.0.1",
"sass": "^1.77.8",
"sass": "^1.79.1",
"sass-loader": "^16.0.1",
"storybook": "^8.2.9",
"storybook": "^8.3.1",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.5.4",
"typescript": "^5.6.2",
"url-loader": "^4.1.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",