Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 801 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 801 Bytes

repo-scraper Build Status JavaScript Style Guide

Scrape repository data, to be consumed by repo-lister.

Multiple repository providers can be supported, currently we can scrape from GitHub and GitLab.

Development

  • npm test for tests and coverage

Cutting a new release

Run this command to automatically increment version, build, commit, tag, and push a new release:

npm test && npm version patch && (export VERSION=`node -p "require('./package.json').version"`; git push && git push origin v$VERSION)