Skip to content

Commit

Permalink
chore(deps): ⬆️ Update all major dependency bump
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Nov 20, 2023
1 parent 50961ca commit b6b7fde
Show file tree
Hide file tree
Showing 16 changed files with 65 additions and 65 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd-generate-changelog-changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-v2-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: ${{ startsWith(github.head_ref, 'v2' )}}
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- id: automerge
name: automerge
uses: 'pascalgn/[email protected]'
Expand Down
48 changes: 24 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand All @@ -38,9 +38,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand All @@ -56,9 +56,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand All @@ -73,9 +73,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand All @@ -90,9 +90,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand All @@ -107,9 +107,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand All @@ -124,11 +124,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand All @@ -137,7 +137,7 @@ jobs:
- name: Pre-Cypress (build all dependencies)
run: yarn test:ci-pre:vue
- name: Cypress run
uses: cypress-io/github-action@v5.8.4
uses: cypress-io/github-action@v6.6.0
with:
browser: chrome
working-directory: apps/test/vue
Expand All @@ -161,9 +161,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand All @@ -172,7 +172,7 @@ jobs:
- name: Pre-Cypress (build all dependencies)
run: yarn test:ci-pre:react
- name: Cypress run
uses: cypress-io/github-action@v5.8.4
uses: cypress-io/github-action@v6.6.0
with:
browser: chrome
working-directory: apps/test/react
Expand All @@ -198,9 +198,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand Down Expand Up @@ -231,11 +231,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand Down Expand Up @@ -269,11 +269,11 @@ jobs:
if: ${{ github.ref == 'refs/heads/v2' }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/configure-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
target-domain: ${{ steps.resolve-env.outputs.target-domain }}
steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Determine environment
shell: bash
id: resolve-env
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-docs-vue-storefront-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
needs: [build, configure-enviroment]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image-build-vue-storefront-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup deployment environments variables
shell: bash
run: |
Expand Down
8 changes: 4 additions & 4 deletions apps/docs/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@
"command-line-args": "^5.2.1",
"handlebars": "^4.7.7",
"rimraf": "^5.0.0",
"typescript": "^4.9.5",
"vue": "^2.6.14",
"typescript": "^5.0.0",
"vue": "^3.0.0",
"vuepress": "^1.9.8",
"vuepress-plugin-clean-urls": "^1.1.2"
},
"dependencies": {
"@storefront-ui/tailwind-config": "workspace:^",
"autoprefixer": "^9",
"concurrently": "^7.6.0",
"autoprefixer": "^10.0.0",
"concurrently": "^8.0.0",
"dotenv": "^16.0.3",
"markdown-it-external-links": "^0.0.6",
"markdown-spellcheck": "^1.3.1",
Expand Down
4 changes: 2 additions & 2 deletions apps/preview/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
"@storefront-ui/preview-shared": "workspace:*",
"classnames": "^2.3.2",
"lodash-es": "^4.17.21",
"next": "^13.3.1",
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.5",
"react-use": "^17.4.0",
"swr": "^2.0.3"
},
"devDependencies": {
"@frsource/autoresize-textarea": "^1.3.76",
"@frsource/autoresize-textarea": "^2.0.0",
"@storefront-ui/eslint-config": "workspace:*",
"@storefront-ui/example-style": "workspace:*",
"@storefront-ui/react": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions apps/preview/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"prettier": "prettier --log-level warn --no-error-on-unmatched-pattern \"**/*.{js,ts,vue}\""
},
"devDependencies": {
"@frsource/autoresize-textarea": "^1.3.76",
"@frsource/autoresize-textarea": "^2.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/tailwindcss": "^6.6.5",
"@storefront-ui/eslint-config": "workspace:*",
Expand All @@ -24,7 +24,7 @@
"@storefront-ui/vue": "workspace:*",
"@tailwindcss/typography": "^0.5.9",
"@types/lodash-es": "^4.17.6",
"@vueuse/core": "^9.12.0",
"@vueuse/core": "^10.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.34.0",
"eslint-plugin-nuxt": "^4.0.0",
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,30 +57,30 @@
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@frsource/frs-replace": "^4.1.1",
"@storefront-ui/typescript-config": "workspace:*",
"@vue-storefront/prettier-config": "^2.0.0-rc.1",
"babel-cli": "^6.26.0",
"babel-preset-node": "^5.1.1",
"commitizen": "^4.2.5",
"concurrently": "^7.4.0",
"concurrently": "^8.0.0",
"husky": "^8.0.0",
"hygen": "^6.2.8",
"prettier": "latest",
"rimraf": "^5.0.0",
"tailwindcss": "^3.1.8",
"turbo": "latest",
"typescript": "^4.9.5",
"typescript": "^5.0.0",
"wait-on": "^7.0.1"
},
"engines": {
"npm": ">=8.19.1",
"yarn": ">=1.22.19",
"node": ">=16.0.0 <17.0.0"
},
"packageManager": "yarn@3.6.4",
"packageManager": "yarn@4.0.2",
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
Expand Down
6 changes: 3 additions & 3 deletions packages/config/tailwind/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
"url": "https://github.com/vuestorefront/storefront-ui/issues"
},
"devDependencies": {
"typescript": "^4.9.5",
"vite": "^4.3.0",
"vite-plugin-dts": "^2.0.0-beta.1"
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0"
},
"dependencies": {
"@mertasan/tailwindcss-variables": "^2.5.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/sfui/frameworks/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"dist"
],
"dependencies": {
"@floating-ui/react-dom": "^1.3.0",
"@floating-ui/react-dom": "^2.0.0",
"@storefront-ui/shared": "workspace:*",
"@storefront-ui/tailwind-config": "workspace:*",
"classnames": "^2.3.2",
Expand All @@ -53,12 +53,12 @@
"devDependencies": {
"@storefront-ui/eslint-config": "workspace:*",
"@storefront-ui/tests-shared": "workspace:*",
"@vitejs/plugin-react": "^3.1.0",
"@vitejs/plugin-react": "^4.0.0",
"concurrently": "^8.2.0",
"eslint": "^8.34.0",
"prettier": "^3.0.0",
"vite": "^4.3.0",
"vite-plugin-dts": "^2.0.0-beta.1",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0",
"vite-tsconfig-paths": "^4.0.5"
},
"peerDependencies": {
Expand Down
10 changes: 5 additions & 5 deletions packages/sfui/frameworks/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,22 @@
"dist"
],
"dependencies": {
"@floating-ui/vue": "^0.2.1",
"@floating-ui/vue": "^1.0.0",
"@storefront-ui/shared": "workspace:*",
"@storefront-ui/tailwind-config": "workspace:*",
"@vueuse/core": "^9.12.0",
"@vueuse/core": "^10.0.0",
"jw-paginate": "^1.0.4",
"tabbable": "^6.1.1"
},
"devDependencies": {
"@storefront-ui/eslint-config": "workspace:*",
"@storefront-ui/tests-shared": "workspace:*",
"@vitejs/plugin-vue": "^4.0.0",
"concurrently": "^7.6.0",
"concurrently": "^8.0.0",
"eslint": "^8.34.0",
"prettier": "^3.0.0",
"vite": "^4.3.0",
"vite-plugin-dts": "^2.0.0-beta.1",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0",
"vite-tsconfig-paths": "^4.0.5",
"vue-tsc": "^1.1.2"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/sfui/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
},
"devDependencies": {
"tabbable": "^6.1.1",
"typescript": "^4.9.5",
"vite": "^4.3.0",
"vite-plugin-dts": "^2.0.0-beta.1",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0",
"vue-tsc": "^1.1.2"
},
"publishConfig": {
Expand Down
6 changes: 3 additions & 3 deletions packages/sfui/tw-plugin-peer-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"build:peer-next": "vite build"
},
"devDependencies": {
"typescript": "^4.9.5",
"vite": "^4.3.0",
"vite-plugin-dts": "^2.0.0-beta.1"
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1"
Expand Down
Loading

0 comments on commit b6b7fde

Please sign in to comment.