Remove cpexcel.js in webpack #438
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#438
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?
When I build my project with this module via webpack and the following configuration:
it gets really large. I noticed that rows like
are also included in my bundle file. How can i remove
cpexcel.js
, so that it gets no longer included?Thanks.
@rusty1s those are coming from the codepage library, which is needed for XLS files and some other corner cases. If you don't expect to have to deal with XLS files (say, if you know the source is always producing XLSX or XLSB files), then you can safely suppress it by using webpack resolve:
This will be added to the README