d-band / better-xlsx

A better xlsx library.
https://d-band.github.io/better-xlsx/
421 stars 36 forks source link

Failed to minify the code from this file #36

Closed wowhyb closed 7 years ago

wowhyb commented 7 years ago

在npm run build 的过程中会报 Failed to minify the code from this file: node.js:32 的错误

helloyou2012 commented 7 years ago

这个库主要是给后端 Node.js 用的,所以打包到 lib 默认是 node@>=v4.0,前端用 dist 目录:

import xlsx from 'better-xlsx/dist/xlsx';
// or import xlsx from 'better-xlsx/dist/xlsx.min';
wowhyb commented 7 years ago

thx