-
Notifications
You must be signed in to change notification settings - Fork 0
[APP-82138] tech: luckydraw animation #83
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
base: master
Are you sure you want to change the base?
Changes from all commits
ab491f0
32c587b
0c8a0ef
4d411e2
44f3318
6e208fd
99b55ad
f15efaf
2e7f85c
3b8d738
ac8e416
86d4a8a
fe0cf2a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,6 @@ | ||||||
| { | ||||||
| "name": "vmo-lib", | ||||||
| "version": "2.1.0", | ||||||
| "version": "2.1.1", | ||||||
| "main": "lib/index.ts", | ||||||
| "module": "dist/index.js", | ||||||
| "types": "dist/index.d.ts", | ||||||
|
|
@@ -12,6 +12,7 @@ | |||||
| "@babel/preset-env": "^7.14.2", | ||||||
| "@babel/preset-react": "^7.13.13", | ||||||
| "@babel/preset-typescript": "^7.13.0", | ||||||
| "@types/gh-pages": "^5.0.1", | ||||||
| "@types/jest": "^29.5.2", | ||||||
| "@types/react-window": "^1.8.5", | ||||||
| "@typescript-eslint/eslint-plugin": "^4.23.0", | ||||||
|
|
@@ -20,7 +21,6 @@ | |||||
| "css-loader": "^5.2.4", | ||||||
| "eslint": "^7.26.0", | ||||||
| "eslint-config-airbnb": "^18.2.1", | ||||||
| "@types/gh-pages": "^5.0.1", | ||||||
| "eslint-config-prettier": "^8.3.0", | ||||||
| "eslint-plugin-import": "^2.22.1", | ||||||
| "eslint-plugin-jsx-a11y": "^6.4.1", | ||||||
|
|
@@ -35,19 +35,20 @@ | |||||
| "jest-environment-jsdom": "^29.5.0", | ||||||
| "lint-staged": "^13.2.2", | ||||||
| "prettier": "^2.3.0", | ||||||
| "sh-exec": "^2.1.0", | ||||||
| "style-loader": "^2.0.0", | ||||||
| "ts-jest": "^26.5.6", | ||||||
| "sh-exec": "^2.1.0", | ||||||
| "ts-node": "^10.9.1", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The issue identified by the Semgrep linter relates to the use of a version range (indicated by the caret To resolve this issue, you can change the version specification for
Suggested change
This comment was generated by an experimental AI tool. |
||||||
| "tsc-files": "^1.1.3", | ||||||
| "typescript": "5.0.4", | ||||||
| "webpack": "^5.37.0", | ||||||
| "webpack-cli": "^4.7.0", | ||||||
| "webpack-dev-server": "^3.11.2", | ||||||
| "ts-node": "^10.9.1" | ||||||
| "webpack-dev-server": "^3.11.2" | ||||||
| }, | ||||||
| "dependencies": { | ||||||
| "@17media/dad": "github:17media/dad#latest", | ||||||
| "@babel/runtime": "^7.15.4", | ||||||
| "@react-gifs/tools": "^0.1.2", | ||||||
| "@sentry/react": "^7.21.1", | ||||||
| "@sentry/tracing": "^7.21.1", | ||||||
| "@testing-library/react": "^14.0.0", | ||||||
|
|
@@ -92,9 +93,9 @@ | |||||
| ] | ||||||
| }, | ||||||
| "peerDependencies": { | ||||||
| "axios": ">=1.3.0", | ||||||
| "react": ">=18.2.0", | ||||||
| "react-dom": ">=18.2.0", | ||||||
| "axios": ">=1.3.0", | ||||||
| "styled-components": ">=5.3.9" | ||||||
| } | ||||||
| } | ||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❌ Codacy found a critical Error Prone issue: Unable to resolve path to module '@react-gifs/tools'.
The issue reported by the ESLint linter, "Unable to resolve path to module '@react-gifs/tools'", indicates that the module '@react-gifs/tools' cannot be found in the project's dependencies. This could be due to several reasons, such as the package not being installed, a typo in the module name, or the module being located in a different path.
To fix this issue, you should ensure that the module is correctly installed in your project. If it is indeed a valid package, you can install it using npm or yarn. However, if you are certain that the package is correctly named and installed, you may want to check your project's configuration or paths.
Assuming the package is not installed yet, the following code suggestion will help you install it:
If the package is already installed and the error persists, you might need to check your
tsconfig.jsonor module resolution settings.This comment was generated by an experimental AI tool.