Needs to add a dependency in bower.json ? #165
Labels
No Label
DBF
Dates
Defined Names
Features
Formula
HTML
Images
Infrastructure
Integration
International
ODS
Operations
Performance
PivotTables
Pro
Protection
Read Bug
SSF
SYLK
Style
Write Bug
good first issue
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#165
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi,
I need to specifiy the url of jszip.js file in dist folder else I have this error: undefined is not a function
It concerns line 5093 of xslx.js file: jszip is undefined.
If I add a dependecy , this is working.
As this file seems to be a mandatory dependency, should not you update bower.json file like this :
{
"name": "js-xlsx",
"homepage": "https://github.com/SheetJS/js-xlsx",
"main": ["dist/jszip.js","dist/xlsx.js"],
"version": "0.7.11",
"ignore": [
"bin",
"bits",
"misc",
"*/."
],
"keywords": [
"excel",
"xlsx",
"xlsm",
"xlsb",
"ods",
"js-xlsx"
]
}
Thank you for your answer.