forked from sheetjs/sheetjs
SheetJS
0b6ebc67da
- DBF write type N and roundtrip C length (fixes #1888 h/t@bandizsolt) - clean up xhr demo (fixes #2604 h/t @UP2022742) - clean up vue / nuxt demo
17 lines
274 B
Makefile
17 lines
274 B
Makefile
.PHONY: vue
|
|
vue: ## Simple server for vue
|
|
python -mSimpleHTTPServer
|
|
|
|
.PHONY: nuxt
|
|
nuxt: ## nuxt.js demo
|
|
npm i xlsx @nuxt/content
|
|
npx nuxt
|
|
|
|
.PHONY: weex
|
|
weex: ## Build weex project
|
|
bash ./weex.sh
|
|
|
|
.PHONY: ios
|
|
ios: weex ## weex ios sim
|
|
cd SheetJS; weexpack run ios; cd -
|