-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Add jquery as a dependency #1152
Comments
+1 |
2 similar comments
+1 |
+1 |
If it helps anyone, I was able to resolve this in webpack by adding jQuery as an external in my config
|
I just bumped up against this with browserify. Hope you agree. Thanks in advance. |
To anyone coming here searching for answers -- jquery is now a dependency of slick. However, in my case, I wanted to use my already loaded jquery in a script tag. To do this you can use webpack externals: externals: [
{
jquery: 'jQuery'
}
] |
This package depends on jquery but doesn't list it as a dependency in the package.json. This will break in webpack/browserify. Will send a PR if you agree.
The text was updated successfully, but these errors were encountered: