加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 372 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mislav Marohnić 提交于 2018-09-07 10:13 . Add flow definitions
test: lint dist/fetch.umd.js
lint: node_modules/
./node_modules/.bin/eslint --report-unused-disable-directives *.js test/*.js
dist/fetch.umd.js: fetch.js rollup.config.js node_modules/
./node_modules/.bin/rollup -c
dist/fetch.umd.js.flow: fetch.js.flow
cp $< $@
node_modules/:
npm install
clean:
rm -rf ./bower_components ./node_modules
.PHONY: clean lint test
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化