forked from sheetjs/docs.sheetjs.com
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			520 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			520 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # https://docs.sheetjs.com/docs/demos/cli/pkg
 | |
| cd /tmp
 | |
| rm -rf sheetjs-pkg
 | |
| mkdir sheetjs-pkg
 | |
| cd sheetjs-pkg
 | |
| 
 | |
| curl -o pres.numbers https://docs.sheetjs.com/pres.numbers
 | |
| 
 | |
| curl -o xlsx-cli.js https://docs.sheetjs.com/cli/xlsx-cli.js
 | |
| 
 | |
| npm i --save https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz exit-on-epipe commander@2
 | |
| 
 | |
| ## NOTE: must downgrade to node 18
 | |
| 
 | |
| npx -y pkg -t 'node18-win-arm64,node18-linux-arm64,node18-macos-arm64' xlsx-cli.js
 | |
| 
 | |
| ## NOTE: these steps are for darwin
 | |
| 
 | |
| ./xlsx-cli-macos pres.numbers
 |