hhurz / tableExport.jquery.plugin

jQuery plugin to export a html table to JSON, XML, CSV, TSV, TXT, SQL, Word, Excel, PNG and PDF
MIT License
984 stars 714 forks source link

Listed Dependencies outdated causing crash in Docker #333

Closed andrewccbc closed 3 years ago

andrewccbc commented 3 years ago

Thank you for your work on this plugin. We ran into a problem with file-saver, jspdf, and jspdf-AutoTable. the versions of file-saver prior to 2.0.1 required git ssh connection which causes docker issues. There are new versions of all 3 of those dependencies which resulted in fixes for this problem. File-Saver 2.0.1+, JSPDF 2.0.0+, and jspdf-AutoTable 3.5.9+ fix this. I tested updating the package JSON to reflect the updated dependencies and it worked great without any npm issues. Just figured you might be interested in updating the dependencies in your version.

r3dqu33n commented 3 years ago

I had a similar issue due to ssh connection being blocked, and (as a workarond) this command solved my problem:

git config --global url."https://github.com".insteadOf ssh://git@github.com

hhurz commented 3 years ago

Dependencies for jsPDF, filesaver.js and others have been updated in release 1.20.0

andrewccbc commented 3 years ago

You are awesome!