Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
cache: npm

- name: Install Deps
run: npm install
run: npm ci

- name: Build Storybook
run: npm run build-storybook
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/export-storybook-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
cache: npm

- name: Install Deps
run: npm install
run: npm ci

- name: Build Storybook
run: npm run build-storybook
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
cache: npm

- name: Install Deps
run: npm install
run: npm ci

- name: Run Component Tests
run: npm run test:components
144 changes: 72 additions & 72 deletions package-lock.json

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

76 changes: 38 additions & 38 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,46 +31,46 @@
"build-storybook": "storybook build"
},
"dependencies": {
"@vue/test-utils": "^2.4.0",
"vue": "^3.4.29",
"vue-i18n": "^11.1.2"
"@vue/test-utils": "2.4.10",
"vue": "3.5.32",
"vue-i18n": "11.3.2"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@rushstack/eslint-patch": "^1.10.4",
"@storybook/addon-a11y": "^10.1.2",
"@storybook/addon-docs": "^10.1.2",
"@storybook/addon-links": "^10.1.2",
"@storybook/addon-themes": "^10.1.2",
"@storybook/vue3-vite": "^10.1.2",
"@tsconfig/node24": "^24.0.3",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/eslint-config-typescript": "^14.3.0",
"@vue/tsconfig": "^0.8.1",
"@vueuse/core": "^14.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.15.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-storybook": "^10.1.2",
"eslint-plugin-vue": "^10.3.0",
"glob": "^13.0.0",
"happy-dom": "^20.8.9",
"npm-run-all2": "^8.0.4",
"postcss": "^8.4.45",
"postcss-custom-media": "^12.0.0",
"postcss-mixins": "^12.0.0",
"postcss-nesting": "^14.0.0",
"prettier": "~3.7.4",
"react": "^19.1.0",
"storybook": "^10.1.10",
"typescript": "~5.9",
"typescript-eslint": "^8.16.0",
"vite": "^7.0.5",
"vite-plugin-dts": "^4.2.2",
"vitest": "^4.0.3",
"vue-tsc": "^3.0.3"
"@playwright/test": "1.59.1",
"@rushstack/eslint-patch": "1.16.1",
"@storybook/addon-a11y": "10.3.5",
"@storybook/addon-docs": "10.3.5",
"@storybook/addon-links": "10.3.5",
"@storybook/addon-themes": "10.3.5",
"@storybook/vue3-vite": "10.3.5",
"@tsconfig/node24": "24.0.4",
"@vitejs/plugin-vue": "6.0.5",
"@vue/eslint-config-typescript": "14.7.0",
"@vue/tsconfig": "0.8.1",
"@vueuse/core": "14.2.1",
"autoprefixer": "10.4.27",
"eslint": "9.39.4",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-playwright": "2.10.1",
"eslint-plugin-storybook": "10.3.5",
"eslint-plugin-vue": "10.8.0",
"glob": "13.0.6",
"happy-dom": "20.8.9",
"npm-run-all2": "8.0.4",
"postcss": "8.5.15",
"postcss-custom-media": "12.0.1",
"postcss-mixins": "12.1.2",
"postcss-nesting": "14.0.0",
"prettier": "3.7.4",
"react": "19.2.4",
"storybook": "10.3.5",
"typescript": "5.9.3",
"typescript-eslint": "8.58.1",
"vite": "7.3.2",
"vite-plugin-dts": "4.5.4",
"vitest": "4.1.3",
"vue-tsc": "3.2.6"
},
"packageManager": "pnpm@8.12.0+sha1.7134f9b8d0b70bc7a1954f47af52123cd2b2acce",
"postcss": {
Expand Down
Loading