-
Notifications
You must be signed in to change notification settings - Fork 14
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
update plugin for mirador 4 #301
base: main
Are you sure you want to change the base?
Conversation
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.
Thanks a lot for the PR ❤️ !
Besides the line-by-line comments, some general notes:
- Please do the formatting in a separate commit next time, makes reviewing a lot easier :-)
- The
.tgz
file probably shouldn't be checked into git
}, | ||
}, | ||
], | ||
].filter(Boolean), |
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.
Why is that neccessary here? All the plugin definitions are truthy, non?
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.
Some of the plugins are used in different env modes. So they can be faulty.
package.json
Outdated
"lint": "eslint ./src ./__tests__", | ||
"format": "eslint --fix ./src ./__tests__", | ||
"prepublishOnly": "npm run build", | ||
"start": "nwb serve-react-demo", | ||
"parcel": "parcel demo/src/index.html", |
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.
parcel
is not listed as a dev dependency, so this can probably be removed?
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.
Oh thanks. I just removed it :)
Hello,
these changes prepare the plugin for the Mirador4/Mui5/React 18 upgrade.