/home/techb158/.nvm/versions/node/v22.6.0/lib/node_modules/npm/node_modules/@npmcli/git/lib
NameSizeModeActions
clone.js49370644editdlrm
errors.js5790644editdlrm
find.js3160644editdlrm
index.js2420644editdlrm
is-clean.js2220644editdlrm
is.js2160644editdlrm
lines-to-revs.js40610644editdlrm
make-error.js8610644editdlrm
opts.js16170644editdlrm
revs.js6520644editdlrm
spawn.js13030644editdlrm
utils.js1090644editdlrm
which.js3390644editdlrm
Edit: /home/techb158/.nvm/versions/node/v22.6.0/lib/node_modules/npm/node_modules/@npmcli/git/lib/revs.js (652B)
const pinflight = require('promise-inflight') const spawn = require('./spawn.js') const { LRUCache } = require('lru-cache') const revsCache = new LRUCache({ max: 100, ttl: 5 * 60 * 1000, }) const linesToRevs = require('./lines-to-revs.js') module.exports = async (repo, opts = {}) => { if (!opts.noGitRevCache) { const cached = revsCache.get(repo) if (cached) { return cached } } return pinflight(`ls-remote:${repo}`, () => spawn(['ls-remote', repo], opts) .then(({ stdout }) => linesToRevs(stdout.trim().split('\n'))) .then(revs => { revsCache.set(repo, revs) return revs }) ) }