forked from sheetjs/sheetjs
		
	- frameworks: react, react-native, preact, next.js, weex, nuxt.js - deployments: nodejs server, duktape, chakra, electron, nw.js
		
			
				
	
	
		
			18 lines
		
	
	
		
			340 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			340 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: vue
 | |
| vue: ## Simple server for vue
 | |
| 	python -mSimpleHTTPServer
 | |
| 
 | |
| .PHONY: nuxt
 | |
| nuxt: ## nuxt.js demo
 | |
| 	mkdir -p node_modules
 | |
| 	cd node_modules; if [ ! -e xlsx ]; then ln -s ../../../ xlsx; fi; cd ..
 | |
| 	nuxt
 | |
| 
 | |
| .PHONY: weex
 | |
| weex: ## Build weex project
 | |
| 	bash ./weex.sh
 | |
| 
 | |
| .PHONY: ios
 | |
| ios: weex ## weex ios sim
 | |
| 	cd SheetJS; weexpack run ios; cd -
 |