Skip to content

Commit aae03a4

Browse files
committed
0.3.1 - Fix 'importScripts()' definition
1 parent eb4f2bb commit aae03a4

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@ This project does its best to adhere to [Semantic Versioning](http://semver.org/
44

55

66
--------
7-
### [0.3.0](N/A) - 2017-10-26
7+
### [0.3.1](N/A) - 2017-10-26
8+
#### Fixed
9+
* Fix `importScripts()` definition in ZipWorker to match the definition in `WorksheetExportWorker`
10+
11+
12+
--------
13+
### [0.3.0](https://github.com/TeamworkGuy2/excel-builder-ts/commit/eb4f2bb801e30a9549c34b1873d8dc545fcccb97) - 2017-10-26
814
#### Changed
9-
* Re-organized the project into sub-folders: `drawings`, `export`, `util`, `workbook`, `worksheet`, and `xml`
15+
* Re-organized the project into sub-folders: `drawings/`, `export/`, `util/`, `workbook/`, `worksheet/`, and `xml/`
1016
* Tweaked some variable names and comments/documentation
1117
* Improved some TypeScript types
1218
* Updated README with note about eventual desire to merge/deprecate project in favor of xlsx-spec-models and xlsx-spec-utils libraries

export/ZipWorker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
declare var importScripts: any;
2+
declare function importScripts(...urls: string[]): void;
33

44
onmessage = function (event: { data: any; }) {
55
importScripts(event.data.ziplib);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "excel-builder-ts",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "TypeScript Port of the excel-builder.js Library - 'A way to build excel files with javascript'",
55
"dependencies": {},
66
"devDependencies": {

0 commit comments

Comments
 (0)