forked from sheetjs/sheetjs
		
	- IE6-9 ActiveX + VBScript shim - `writeFile` supported in browser - `oldie` demo for IE write strategies
		
			
				
	
	
		
			10 lines
		
	
	
		
			144 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			144 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
.PHONY: all
 | 
						|
all:
 | 
						|
	npm run build
 | 
						|
 | 
						|
.PHONY: init
 | 
						|
init:
 | 
						|
	mkdir -p node_modules
 | 
						|
	npm install typescript
 | 
						|
	cd node_modules; ln -s ../../../ xlsx; cd -
 |