2017-09-12 20:02:06 +00:00
|
|
|
.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 ..
|
2021-09-19 04:11:54 +00:00
|
|
|
npm i nuxt vue
|
|
|
|
npx nuxt
|
2017-09-12 20:02:06 +00:00
|
|
|
|
|
|
|
.PHONY: weex
|
|
|
|
weex: ## Build weex project
|
|
|
|
bash ./weex.sh
|
|
|
|
|
|
|
|
.PHONY: ios
|
|
|
|
ios: weex ## weex ios sim
|
|
|
|
cd SheetJS; weexpack run ios; cd -
|