forked from sheetjs/sheetjs
		
	- `writeFile` support chrome extension (fixes #1051 h/t @atkinsam) - demo refresh
		
			
				
	
	
		
			16 lines
		
	
	
		
			385 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			385 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
if [ ! -e SheetJSNS ]; then
 | 
						|
	tns create SheetJSNS --template nativescript-template-ng-tutorial
 | 
						|
	cd SheetJSNS
 | 
						|
	tns plugin add nativescript-nodeify
 | 
						|
	npm install xlsx
 | 
						|
	cd app
 | 
						|
	npm install xlsx
 | 
						|
	cd ../..
 | 
						|
fi
 | 
						|
 | 
						|
cp ../../dist/xlsx.full.min.js SheetJSNS/
 | 
						|
cp ../../dist/xlsx.full.min.js SheetJSNS/app/
 | 
						|
cp nsmain.ts  SheetJSNS/app/main.ts
 | 
						|
cp nscript.ts SheetJSNS/app/app.component.ts
 |