Skip to content

Commit

Permalink
chore(deps): upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisMazel committed Dec 11, 2024
1 parent 8acb358 commit 6e71659
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 73 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/doc-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '21'
cache: 'pnpm'
# with:
# node-version: '21'
# cache: 'pnpm'

- name: Install dependencies
run: pnpm install
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"ts-node": "11.0.0-beta.1"
},
Expand Down
3 changes: 2 additions & 1 deletion packages/lib/components/MazInputTags.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ const tags = computed(() =>
props.modelValue?.map((tag: string | number) => {
return {
tag,
id: crypto.randomUUID(),
// eslint-disable-next-line sonarjs/pseudo-random
id: crypto?.randomUUID() ?? `${Date.now()}-${Math.random().toString(36).slice(2)}`,
}
}),
)
Expand Down
93 changes: 25 additions & 68 deletions pnpm-lock.yaml

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

0 comments on commit 6e71659

Please sign in to comment.