You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, in the 'dependencies' section of package.json you specified 'jquery' package as a dependency, but within draggable.js you require it as 'jQuery'.
On case-sensitive file systems (all linux) this will break, as require() is case-sensitive.
The possible solution is to require jquery with lowercase for all OS/filesystems compatibility.
The text was updated successfully, but these errors were encountered:
Hi, in the 'dependencies' section of package.json you specified 'jquery' package as a dependency, but within draggable.js you require it as 'jQuery'.
On case-sensitive file systems (all linux) this will break, as require() is case-sensitive.
The possible solution is to require jquery with lowercase for all OS/filesystems compatibility.
The text was updated successfully, but these errors were encountered: