Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add vuetify and @mdi/font #99

Merged
merged 2 commits into from
Jun 2, 2024
Merged
Changes from 1 commit
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
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -772,6 +772,9 @@
"@mdi/react": {
"version": "*"
},
"@mdi/font": {
"version": "*"
},
Comment on lines +778 to +780
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Specify a more specific version for @mdi/font to avoid potential breaking changes from updates.

- "@mdi/font": {
-   "version": "*"
+ "@mdi/font": {
+   "version": "^5.0.0"  # Assuming 5.0.0 is the current stable version
}
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
"@mdi/font": {
"version": "*"
},
"@mdi/font": {
"version": "^5.0.0" # Assuming 5.0.0 is the current stable version
},

"@mdn/browser-compat-data": {
"version": "*"
},
Expand Down Expand Up @@ -17023,6 +17026,9 @@
"vuera": {
"version": "*"
},
"vuetify": {
"version": "*"
},
Comment on lines +17032 to +17034
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Specify a more specific version for vuetify to ensure stability.

- "vuetify": {
-   "version": "*"
+ "vuetify": {
+   "version": "^2.5.0"  # Assuming 2.5.0 is the current stable version
}

Committable suggestion was skipped due low confidence.

"vuex": {
"version": "*"
},
Expand Down
Loading