1 Star 0 Fork 1

zzy1661/js-xlsx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
make.cmd 921 Bytes
一键复制 编辑 原始数据 按行查看 历史
@echo off
REM vim: set ts=2:
if "%1" == "help" (
echo make init -- install deps and global modules
echo make lint -- run eslint linter
echo make test -- run mocha test suite
echo remember to download the test_files release!
echo make misc -- run smaller test suite
echo make book -- rebuild README and summary
echo make help -- display this message
) else if "%1" == "init" (
npm install
npm install -g eslint eslint-plugin-html eslint-plugin-json
npm install -g mocha markdown-toc
) else if "%1" == "lint" (
eslint --ext .js,.njs,.json,.html,.htm xlsx.js xlsx.flow.js bin/xlsx.njs package.json bower.json
) else if "%1" == "test" (
SET FMTS=
mocha -R spec -t 30000
) else if "%1" == "misc" (
SET FMTS=misc
mocha -R spec -t 30000
) else if "%1" == "book" (
type docbits\*.md > README.md
markdown-toc -i README.md
) else (
type bits\*.js > xlsx.flow.js
node misc\strip_flow.js > xlsx.js
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zzy1661/js-xlsx.git
git@gitee.com:zzy1661/js-xlsx.git
zzy1661
js-xlsx
js-xlsx
master

搜索帮助