I think
|
const command = `java -jar ${libPath} ${args.join(' ')} ${filePath}`; |
should be changed to
const command = `java -jar ${libPath} ${args.join(' ')} "${filePath}"`;
to allow for spaces in the file name. The current version gives
Error: Need exactly one filename
I think
tabula-node/src/index.ts
Line 95 in 1b0afb6
should be changed to
to allow for spaces in the file name. The current version gives