forked from sheetjs/sheetjs
		
	- Skip extraneous trailing records (fixes #938 h/t @benjaminleetmaa) - XLS -> XLML oddities (fixes #678 h/t @buserror) - ionic demo - sheet_add_aoa and sheet_add_json Issues: - fixes #947 h/t @fpasxos - fixes #666 h/t @samuelkavin - fixes #301 h/t @acgentry - fixes #561 h/t @Ideandro
		
			
				
	
	
		
			32 lines
		
	
	
		
			858 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			858 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: angular
 | |
| angular:
 | |
| 	# Test Angular2 build
 | |
| 	cp package.json-angular2 package.json
 | |
| 	npm install
 | |
| 	if [ ! -e node_modules ]; then mkdir node_modules; fi
 | |
| 	if [ ! -e node_modules/xlsx ]; then cd node_modules; ln -s ../../../ xlsx; cd -; fi
 | |
| 	ng build
 | |
| 
 | |
| 	# Test Angular4 build
 | |
| 	cp package.json-angular4 package.json
 | |
| 	npm install
 | |
| 	if [ ! -e node_modules ]; then mkdir node_modules; fi
 | |
| 	if [ ! -e node_modules/xlsx ]; then cd node_modules; ln -s ../../../ xlsx; cd -; fi
 | |
| 	ng build
 | |
| 
 | |
| 	# Test Angular5 build
 | |
| 	cp package.json-angular5 package.json
 | |
| 	npm install
 | |
| 	if [ ! -e node_modules ]; then mkdir node_modules; fi
 | |
| 	if [ ! -e node_modules/xlsx ]; then cd node_modules; ln -s ../../../ xlsx; cd -; fi
 | |
| 	ng build
 | |
| 
 | |
| .PHONY: ionic
 | |
| ionic:
 | |
| 	bash ./ionic.sh
 | |
| 
 | |
| .PHONY: ios android browser
 | |
| ios android browser: ionic
 | |
| 	cd SheetJSIonic; ionic cordova emulate $@ </dev/null; cd -
 | |
| 
 |