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
0.4.0 - Update TypeScript 2.8. Modify ExcelBuilder.createFile() JSZip parameter so JSZip is only required by ZipWorker. Add tsconfig 'strictNullChecks', 'noImplicitReturns', and 'forceConsistentCasingInFileNames'. Add npm script 'build-package' for release tarball.
* Update tsconfig.json with `strictNullChecks: true`, `noImplicitReturns: true` and `forceConsistentCasingInFileNames: true`
11
+
* Added release tarball and npm script `build-package` to package.json referencing external process to generate tarball
12
+
* Cleanup JSZip dependency:
13
+
*`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, ...)`
0 commit comments