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
Update tsconfig.json with strictNullChecks: true, noImplicitReturns: true and forceConsistentCasingInFileNames: true
Added release tarball and npm script build-package to package.json referencing external process to generate tarball
Cleanup JSZip dependency:
ExcelBuilder.createFile() now requires a JSZip instance or object with file() method instead of creating a JSZip instance from a constructor function and generating the zip file. i.e. use ExcelBuilder.createFile(new JSZip(), ...).generateAsync(...) instead of previously using ExcelBuilder.createFile(JSZip, ...)