@vltpkg/git 0.0.0-0.1730239248325
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +16 -0
- package/README.md +163 -0
- package/dist/esm/clone.d.ts +13 -0
- package/dist/esm/clone.d.ts.map +1 -0
- package/dist/esm/clone.js +140 -0
- package/dist/esm/clone.js.map +1 -0
- package/dist/esm/find.d.ts +6 -0
- package/dist/esm/find.d.ts.map +1 -0
- package/dist/esm/find.js +15 -0
- package/dist/esm/find.js.map +1 -0
- package/dist/esm/index.d.ts +52 -0
- package/dist/esm/index.d.ts.map +1 -0
- package/dist/esm/index.js +8 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/is-clean.d.ts +2 -0
- package/dist/esm/is-clean.d.ts.map +1 -0
- package/dist/esm/is-clean.js +14 -0
- package/dist/esm/is-clean.js.map +1 -0
- package/dist/esm/is-windows.d.ts +3 -0
- package/dist/esm/is-windows.d.ts.map +1 -0
- package/dist/esm/is-windows.js +2 -0
- package/dist/esm/is-windows.js.map +1 -0
- package/dist/esm/is.d.ts +4 -0
- package/dist/esm/is.d.ts.map +1 -0
- package/dist/esm/is.js +4 -0
- package/dist/esm/is.js.map +1 -0
- package/dist/esm/lines-to-revs.d.ts +7 -0
- package/dist/esm/lines-to-revs.d.ts.map +1 -0
- package/dist/esm/lines-to-revs.js +153 -0
- package/dist/esm/lines-to-revs.js.map +1 -0
- package/dist/esm/make-error.d.ts +5 -0
- package/dist/esm/make-error.d.ts.map +1 -0
- package/dist/esm/make-error.js +22 -0
- package/dist/esm/make-error.js.map +1 -0
- package/dist/esm/opts.d.ts +4 -0
- package/dist/esm/opts.d.ts.map +1 -0
- package/dist/esm/opts.js +15 -0
- package/dist/esm/opts.js.map +1 -0
- package/dist/esm/package.json +3 -0
- package/dist/esm/resolve.d.ts +17 -0
- package/dist/esm/resolve.d.ts.map +1 -0
- package/dist/esm/resolve.js +42 -0
- package/dist/esm/resolve.js.map +1 -0
- package/dist/esm/revs.d.ts +4 -0
- package/dist/esm/revs.d.ts.map +1 -0
- package/dist/esm/revs.js +31 -0
- package/dist/esm/revs.js.map +1 -0
- package/dist/esm/spawn.d.ts +4 -0
- package/dist/esm/spawn.d.ts.map +1 -0
- package/dist/esm/spawn.js +35 -0
- package/dist/esm/spawn.js.map +1 -0
- package/dist/esm/which.d.ts +3 -0
- package/dist/esm/which.d.ts.map +1 -0
- package/dist/esm/which.js +27 -0
- package/dist/esm/which.js.map +1 -0
- package/package.json +72 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
The ISC License
|
|
2
|
+
|
|
3
|
+
Copyright (c) npm, Inc.
|
|
4
|
+
Copyright (c) vlt technology, Inc.
|
|
5
|
+
|
|
6
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
7
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
8
|
+
copyright notice and this permission notice appear in all copies.
|
|
9
|
+
|
|
10
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE NPM DISCLAIMS ALL WARRANTIES WITH
|
|
11
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
12
|
+
FITNESS. IN NO EVENT SHALL THE NPM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
|
|
13
|
+
OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
14
|
+
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
15
|
+
ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
16
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
# `@vltpkg/git`
|
|
2
|
+
|
|
3
|
+
A utility for spawning git from npm CLI contexts.
|
|
4
|
+
|
|
5
|
+
This is _not_ an implementation of git itself, it's just a thing that
|
|
6
|
+
spawns child processes to tell the system git CLI implementation to do
|
|
7
|
+
stuff.
|
|
8
|
+
|
|
9
|
+
Fork of `@npmcli/git`.
|
|
10
|
+
|
|
11
|
+
## USAGE
|
|
12
|
+
|
|
13
|
+
```js
|
|
14
|
+
import { clone, spawn } from '@vltpkg/git'
|
|
15
|
+
|
|
16
|
+
// clone a repo
|
|
17
|
+
const sha = await clone(
|
|
18
|
+
'git://foo/bar.git',
|
|
19
|
+
'some-branch',
|
|
20
|
+
'some-path',
|
|
21
|
+
opts,
|
|
22
|
+
)
|
|
23
|
+
const result = await spawn(['checkout', 'some-branch'], {
|
|
24
|
+
cwd: 'bar',
|
|
25
|
+
})
|
|
26
|
+
await spawn(['you get the idea'])
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## API
|
|
30
|
+
|
|
31
|
+
Most methods take an options object. Options are described below.
|
|
32
|
+
|
|
33
|
+
### `spawn(args, opts = {})`
|
|
34
|
+
|
|
35
|
+
Launch a `git` subprocess with the arguments specified.
|
|
36
|
+
|
|
37
|
+
All the other functions call this one at some point.
|
|
38
|
+
|
|
39
|
+
Processes are launched using
|
|
40
|
+
[`@vltpkg/promise-spawn`](http://npm.im/@vltpkg/promise-spawn).
|
|
41
|
+
|
|
42
|
+
Return value is a `SpawnPromise` that resolves to a result object
|
|
43
|
+
with `{cmd, args, code, signal, stdout, stderr}` members, or
|
|
44
|
+
rejects with an error with the same fields, passed back from
|
|
45
|
+
[`@vltpkg/promise-spawn`](http://npm.im/@vltpkg/promise-spawn).
|
|
46
|
+
|
|
47
|
+
### `clone(repo, ref = 'HEAD', target = null, opts = {})` -> `Promise<sha string>`
|
|
48
|
+
|
|
49
|
+
Clone the repository into `target` path (or the default path for the name
|
|
50
|
+
of the repository), checking out `ref`.
|
|
51
|
+
|
|
52
|
+
Return value is the sha of the current HEAD in the locally cloned
|
|
53
|
+
repository.
|
|
54
|
+
|
|
55
|
+
In lieu of a specific `ref`, you may also pass in a `spec` option, which is
|
|
56
|
+
a [`npm-package-arg`](http://npm.im/npm-package-arg) object for a `git`
|
|
57
|
+
package dependency reference. In this way, you can select SemVer tags
|
|
58
|
+
within a range, or any git committish value. For example:
|
|
59
|
+
|
|
60
|
+
```js
|
|
61
|
+
import { Spec } from '@vltpkg/spec'
|
|
62
|
+
import { clone } from '@vltpkg/git'
|
|
63
|
+
clone('git@github.com:npm/git.git', '', null, {
|
|
64
|
+
spec: Spec.parse('name@github:npm/git#semver:1.x'),
|
|
65
|
+
})
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
This will automatically do a shallow `--depth=1` clone on any hosts that
|
|
69
|
+
are known to support it. To force a shallow or deep clone, you can set the
|
|
70
|
+
`gitShallow` option to `true` or `false` respectively.
|
|
71
|
+
|
|
72
|
+
### `revs(repo, opts = {})` -> `Promise<rev doc Object>`
|
|
73
|
+
|
|
74
|
+
Fetch a representation of all of the named references in a given
|
|
75
|
+
repository. The resulting doc is intentionally somewhat
|
|
76
|
+
packument-like, so that git semver ranges can be applied using
|
|
77
|
+
the same
|
|
78
|
+
[`@vltpkg/pick-manifest`](http://npm.im/@vltpkg/pick-manifest)
|
|
79
|
+
logic.
|
|
80
|
+
|
|
81
|
+
The resulting object looks like:
|
|
82
|
+
|
|
83
|
+
```js
|
|
84
|
+
revs = {
|
|
85
|
+
versions: {
|
|
86
|
+
// all semver-looking tags go in here...
|
|
87
|
+
// version: { sha, ref, rawRef, type }
|
|
88
|
+
'1.0.0': {
|
|
89
|
+
sha: '1bc5fba3353f8e1b56493b266bc459276ab23139',
|
|
90
|
+
ref: 'v1.0.0',
|
|
91
|
+
rawRef: 'refs/tags/v1.0.0',
|
|
92
|
+
type: 'tag',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
'dist-tags': {
|
|
96
|
+
HEAD: '1.0.0',
|
|
97
|
+
latest: '1.0.0',
|
|
98
|
+
},
|
|
99
|
+
refs: {
|
|
100
|
+
// all the advertised refs that can be cloned down remotely
|
|
101
|
+
HEAD: { sha, ref, rawRef, type: 'head' },
|
|
102
|
+
master: { ... },
|
|
103
|
+
'v1.0.0': { ... },
|
|
104
|
+
'refs/tags/v1.0.0': { ... },
|
|
105
|
+
},
|
|
106
|
+
shas: {
|
|
107
|
+
// all named shas referenced above
|
|
108
|
+
// sha: [list, of, refs]
|
|
109
|
+
'6b2501f9183a1753027a9bf89a184b7d3d4602c7': [
|
|
110
|
+
'HEAD',
|
|
111
|
+
'master',
|
|
112
|
+
'refs/heads/master',
|
|
113
|
+
],
|
|
114
|
+
'1bc5fba3353f8e1b56493b266bc459276ab23139': [ 'v1.0.0', 'refs/tags/v1.0.0' ],
|
|
115
|
+
},
|
|
116
|
+
}
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### `is(opts)` -> `Promise<boolean>`
|
|
120
|
+
|
|
121
|
+
Resolve to `true` if the `cwd` option refers to the root of a git
|
|
122
|
+
repository.
|
|
123
|
+
|
|
124
|
+
It does this by looking for a file or folder at `${path}/.git`,
|
|
125
|
+
which is not an airtight indicator, but usually pretty reliable.
|
|
126
|
+
|
|
127
|
+
### `git.find(opts)` -> `Promise<string | undefined>`
|
|
128
|
+
|
|
129
|
+
Given a path, walk up the file system tree until a git repo
|
|
130
|
+
working directory is found. Since this calls `stat` a bunch of
|
|
131
|
+
times, it's probably best to only call it if you're reasonably
|
|
132
|
+
sure you're likely to be in a git project somewhere. Pass in
|
|
133
|
+
`opts.root` to stop checking at that directory.
|
|
134
|
+
|
|
135
|
+
Resolves to `undefined` if not in a git project.
|
|
136
|
+
|
|
137
|
+
### `isClean(opts = {})` -> `Promise<boolean>`
|
|
138
|
+
|
|
139
|
+
Return true if in a git dir, and that git dir is free of changes.
|
|
140
|
+
This will resolve `true` if the git working dir is clean, or
|
|
141
|
+
`false` if not, and reject if the path is not within a git
|
|
142
|
+
directory or some other error occurs.
|
|
143
|
+
|
|
144
|
+
## OPTIONS
|
|
145
|
+
|
|
146
|
+
- `retry` An object to configure retry behavior for transient network
|
|
147
|
+
errors with exponential backoff.
|
|
148
|
+
- `retries`: Defaults to `opts.fetchRetries` or 2
|
|
149
|
+
- `factor`: Defaults to `opts.fetchRetryFactor` or 10
|
|
150
|
+
- `maxTimeout`: Defaults to `opts.fetchRetryMaxtimeout` or 60000
|
|
151
|
+
- `minTimeout`: Defaults to `opts.fetchRetryMintimeout` or 1000
|
|
152
|
+
- `git` Path to the `git` binary to use. Will look up the first `git` in
|
|
153
|
+
the `PATH` if not specified.
|
|
154
|
+
- `spec` The [`@vltpkg/spec`](http://npm.im/@vltpkg/spec)
|
|
155
|
+
specifier object for the thing being fetched (if relevant).
|
|
156
|
+
- `fakePlatform` set to a fake value of `process.platform` to use. (Just
|
|
157
|
+
for testing `win32` behavior on Unix, and vice versa.)
|
|
158
|
+
- `cwd` The current working dir for the git command. Particularly for
|
|
159
|
+
`find` and `is` and `isClean`, it's good to know that this defaults to
|
|
160
|
+
`process.cwd()`, as one might expect.
|
|
161
|
+
- Any other options that can be passed to
|
|
162
|
+
[`@vltpkg/promise-spawn`](http://npm.im/@vltpkg/promise-spawn), or
|
|
163
|
+
`child_process.spawn()`.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { GitOptions } from './index.js';
|
|
2
|
+
/**
|
|
3
|
+
* Only these whitelisted hosts get shallow cloning. Many hosts (including GHE)
|
|
4
|
+
* don't always support it. A failed shallow fetch takes a LOT longer than a
|
|
5
|
+
* full fetch in most cases, so we skip it entirely. Set opts.gitShallow =
|
|
6
|
+
* true/false to force this behavior one way or the other.
|
|
7
|
+
*
|
|
8
|
+
* If other hosts are added to this set, then they will be shallowly cloned
|
|
9
|
+
* as well.
|
|
10
|
+
*/
|
|
11
|
+
export declare const shallowHosts: Set<string>;
|
|
12
|
+
export declare const clone: (repo: string, ref?: string, target?: string | undefined, opts?: GitOptions) => Promise<string | (Buffer & string)>;
|
|
13
|
+
//# sourceMappingURL=clone.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clone.d.ts","sourceRoot":"","sources":["../../src/clone.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAMvC;;;;;;;;GAQG;AACH,eAAO,MAAM,YAAY,aAMvB,CAAA;AAEF,eAAO,MAAM,KAAK,SACV,MAAM,yBAEJ,MAAM,GAAG,SAAS,SACpB,UAAU,wCAajB,CAAA"}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
// The goal here is to minimize both git workload and
|
|
2
|
+
// the number of refs we download over the network.
|
|
3
|
+
//
|
|
4
|
+
// Every method ends up with the checked out working dir
|
|
5
|
+
// at the specified ref, and resolves with the git sha.
|
|
6
|
+
import { gitScpURL } from '@vltpkg/git-scp-url';
|
|
7
|
+
import { mkdir, stat } from 'fs/promises';
|
|
8
|
+
import { basename, resolve } from 'path';
|
|
9
|
+
import { fileURLToPath } from 'url';
|
|
10
|
+
import { isWindows } from './is-windows.js';
|
|
11
|
+
import { resolveRef } from './resolve.js';
|
|
12
|
+
import { revs as getRevs } from './revs.js';
|
|
13
|
+
import { spawn } from './spawn.js';
|
|
14
|
+
/**
|
|
15
|
+
* Only these whitelisted hosts get shallow cloning. Many hosts (including GHE)
|
|
16
|
+
* don't always support it. A failed shallow fetch takes a LOT longer than a
|
|
17
|
+
* full fetch in most cases, so we skip it entirely. Set opts.gitShallow =
|
|
18
|
+
* true/false to force this behavior one way or the other.
|
|
19
|
+
*
|
|
20
|
+
* If other hosts are added to this set, then they will be shallowly cloned
|
|
21
|
+
* as well.
|
|
22
|
+
*/
|
|
23
|
+
export const shallowHosts = new Set([
|
|
24
|
+
'github.com',
|
|
25
|
+
'gist.github.com',
|
|
26
|
+
'gitlab.com',
|
|
27
|
+
'bitbucket.com',
|
|
28
|
+
'bitbucket.org',
|
|
29
|
+
]);
|
|
30
|
+
export const clone = async (repo, ref = 'HEAD', target = undefined, opts = {}) => {
|
|
31
|
+
repo = String(gitScpURL(repo) ?? repo).replace(/^git\+/, '');
|
|
32
|
+
if (repo.startsWith('file://'))
|
|
33
|
+
repo = fileURLToPath(repo);
|
|
34
|
+
const revs = await getRevs(repo, opts);
|
|
35
|
+
return await clone_(repo, revs, ref, revs && resolveRef(revs, ref, opts), target || defaultTarget(repo, opts.cwd), opts);
|
|
36
|
+
};
|
|
37
|
+
const maybeShallow = (repo, opts) => {
|
|
38
|
+
if (opts['git-shallow'] === false || opts['git-shallow']) {
|
|
39
|
+
return opts['git-shallow'];
|
|
40
|
+
}
|
|
41
|
+
const host = gitScpURL(repo)?.host ?? '';
|
|
42
|
+
return shallowHosts.has(host);
|
|
43
|
+
};
|
|
44
|
+
const defaultTarget = (repo,
|
|
45
|
+
/* c8 ignore next */ cwd = process.cwd()) => resolve(cwd, basename(repo.replace(/[/\\]?\.git$/, '')));
|
|
46
|
+
const clone_ = (repo, revs, ref, revDoc, target, opts) => {
|
|
47
|
+
if (!revDoc || !revs) {
|
|
48
|
+
return unresolved(repo, ref, target, opts);
|
|
49
|
+
}
|
|
50
|
+
if (revDoc.sha === revs.refs.HEAD?.sha) {
|
|
51
|
+
return plain(repo, revDoc, target, opts);
|
|
52
|
+
}
|
|
53
|
+
if (revDoc.type === 'tag' || revDoc.type === 'branch') {
|
|
54
|
+
return branch(repo, revDoc, target, opts);
|
|
55
|
+
}
|
|
56
|
+
return other(repo, revDoc, target, opts);
|
|
57
|
+
};
|
|
58
|
+
// pull request or some other kind of advertised ref
|
|
59
|
+
const other = async (repo, revDoc, target, opts) => {
|
|
60
|
+
const shallow = maybeShallow(repo, opts);
|
|
61
|
+
const fetchOrigin = ['fetch', 'origin', revDoc.rawRef].concat(shallow ? ['--depth=1'] : []);
|
|
62
|
+
const git = (args) => spawn(args, { ...opts, cwd: target });
|
|
63
|
+
await mkdir(target, { recursive: true });
|
|
64
|
+
await git(['init']);
|
|
65
|
+
if (isWindows(opts)) {
|
|
66
|
+
await git([
|
|
67
|
+
'config',
|
|
68
|
+
'--local',
|
|
69
|
+
'--add',
|
|
70
|
+
'core.longpaths',
|
|
71
|
+
'true',
|
|
72
|
+
]);
|
|
73
|
+
}
|
|
74
|
+
await git(['remote', 'add', 'origin', repo]);
|
|
75
|
+
await git(fetchOrigin);
|
|
76
|
+
await git(['checkout', revDoc.sha]);
|
|
77
|
+
await updateSubmodules(target, opts);
|
|
78
|
+
return revDoc.sha;
|
|
79
|
+
};
|
|
80
|
+
// tag or branches. use -b
|
|
81
|
+
const branch = async (repo, revDoc, target, opts) => {
|
|
82
|
+
const args = [
|
|
83
|
+
'clone',
|
|
84
|
+
'-b',
|
|
85
|
+
revDoc.ref,
|
|
86
|
+
repo,
|
|
87
|
+
target,
|
|
88
|
+
'--recurse-submodules',
|
|
89
|
+
];
|
|
90
|
+
if (maybeShallow(repo, opts)) {
|
|
91
|
+
args.push('--depth=1');
|
|
92
|
+
}
|
|
93
|
+
if (isWindows(opts)) {
|
|
94
|
+
args.push('--config', 'core.longpaths=true');
|
|
95
|
+
}
|
|
96
|
+
await spawn(args, opts);
|
|
97
|
+
return revDoc.sha;
|
|
98
|
+
};
|
|
99
|
+
// just the head. clone it
|
|
100
|
+
const plain = async (repo, revDoc, target, opts) => {
|
|
101
|
+
const args = ['clone', repo, target, '--recurse-submodules'];
|
|
102
|
+
if (maybeShallow(repo, opts)) {
|
|
103
|
+
args.push('--depth=1');
|
|
104
|
+
}
|
|
105
|
+
if (isWindows(opts)) {
|
|
106
|
+
args.push('--config', 'core.longpaths=true');
|
|
107
|
+
}
|
|
108
|
+
await spawn(args, opts);
|
|
109
|
+
return revDoc.sha;
|
|
110
|
+
};
|
|
111
|
+
const updateSubmodules = async (target, opts) => {
|
|
112
|
+
const hasSubmodules = await stat(`${target}/.gitmodules`)
|
|
113
|
+
.then(() => true)
|
|
114
|
+
.catch(() => false);
|
|
115
|
+
if (!hasSubmodules) {
|
|
116
|
+
return;
|
|
117
|
+
}
|
|
118
|
+
await spawn(['submodule', 'update', '-q', '--init', '--recursive'], { ...opts, cwd: target });
|
|
119
|
+
};
|
|
120
|
+
const unresolved = async (repo, ref, target, opts) => {
|
|
121
|
+
// can't do this one shallowly, because the ref isn't advertised
|
|
122
|
+
// but we can avoid checking out the working dir twice, at least
|
|
123
|
+
const lp = isWindows(opts) ? ['--config', 'core.longpaths=true'] : [];
|
|
124
|
+
const cloneArgs = [
|
|
125
|
+
'clone',
|
|
126
|
+
'--mirror',
|
|
127
|
+
'-q',
|
|
128
|
+
repo,
|
|
129
|
+
target + '/.git',
|
|
130
|
+
];
|
|
131
|
+
const git = (args) => spawn(args, { ...opts, cwd: target });
|
|
132
|
+
await mkdir(target, { recursive: true });
|
|
133
|
+
await git(cloneArgs.concat(lp));
|
|
134
|
+
await git(['init']);
|
|
135
|
+
await git(['checkout', ref]);
|
|
136
|
+
await updateSubmodules(target, opts);
|
|
137
|
+
const result = await git(['rev-parse', '--revs-only', 'HEAD']);
|
|
138
|
+
return result.stdout;
|
|
139
|
+
};
|
|
140
|
+
//# sourceMappingURL=clone.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clone.js","sourceRoot":"","sources":["../../src/clone.ts"],"names":[],"mappings":"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","sourcesContent":["// The goal here is to minimize both git workload and\n// the number of refs we download over the network.\n//\n// Every method ends up with the checked out working dir\n// at the specified ref, and resolves with the git sha.\n\nimport { RevDoc, RevDocEntry } from '@vltpkg/types'\nimport { gitScpURL } from '@vltpkg/git-scp-url'\nimport { mkdir, stat } from 'fs/promises'\nimport { basename, resolve } from 'path'\nimport { fileURLToPath } from 'url'\nimport { GitOptions } from './index.js'\nimport { isWindows } from './is-windows.js'\nimport { resolveRef } from './resolve.js'\nimport { revs as getRevs } from './revs.js'\nimport { spawn } from './spawn.js'\n\n/**\n * Only these whitelisted hosts get shallow cloning. Many hosts (including GHE)\n * don't always support it. A failed shallow fetch takes a LOT longer than a\n * full fetch in most cases, so we skip it entirely. Set opts.gitShallow =\n * true/false to force this behavior one way or the other.\n *\n * If other hosts are added to this set, then they will be shallowly cloned\n * as well.\n */\nexport const shallowHosts = new Set([\n 'github.com',\n 'gist.github.com',\n 'gitlab.com',\n 'bitbucket.com',\n 'bitbucket.org',\n])\n\nexport const clone = async (\n repo: string,\n ref = 'HEAD',\n target: string | undefined = undefined,\n opts: GitOptions = {},\n) => {\n repo = String(gitScpURL(repo) ?? repo).replace(/^git\\+/, '')\n if (repo.startsWith('file://')) repo = fileURLToPath(repo)\n const revs = await getRevs(repo, opts)\n return await clone_(\n repo,\n revs,\n ref,\n revs && resolveRef(revs, ref, opts),\n target || defaultTarget(repo, opts.cwd),\n opts,\n )\n}\n\nconst maybeShallow = (repo: string, opts: GitOptions) => {\n if (opts['git-shallow'] === false || opts['git-shallow']) {\n return opts['git-shallow']\n }\n const host = gitScpURL(repo)?.host ?? ''\n return shallowHosts.has(host)\n}\n\nconst defaultTarget = (\n repo: string,\n /* c8 ignore next */ cwd = process.cwd(),\n) => resolve(cwd, basename(repo.replace(/[/\\\\]?\\.git$/, '')))\n\nconst clone_ = (\n repo: string,\n revs: RevDoc | undefined,\n ref: string,\n revDoc: RevDocEntry | undefined,\n target: string,\n opts: GitOptions,\n) => {\n if (!revDoc || !revs) {\n return unresolved(repo, ref, target, opts)\n }\n if (revDoc.sha === revs.refs.HEAD?.sha) {\n return plain(repo, revDoc, target, opts)\n }\n if (revDoc.type === 'tag' || revDoc.type === 'branch') {\n return branch(repo, revDoc, target, opts)\n }\n return other(repo, revDoc, target, opts)\n}\n\n// pull request or some other kind of advertised ref\nconst other = async (\n repo: string,\n revDoc: RevDocEntry,\n target: string,\n opts: GitOptions,\n) => {\n const shallow = maybeShallow(repo, opts)\n\n const fetchOrigin = ['fetch', 'origin', revDoc.rawRef].concat(\n shallow ? ['--depth=1'] : [],\n )\n\n const git = (args: string[]) =>\n spawn(args, { ...opts, cwd: target })\n await mkdir(target, { recursive: true })\n await git(['init'])\n if (isWindows(opts)) {\n await git([\n 'config',\n '--local',\n '--add',\n 'core.longpaths',\n 'true',\n ])\n }\n await git(['remote', 'add', 'origin', repo])\n await git(fetchOrigin)\n await git(['checkout', revDoc.sha])\n await updateSubmodules(target, opts)\n return revDoc.sha\n}\n\n// tag or branches. use -b\nconst branch = async (\n repo: string,\n revDoc: RevDocEntry,\n target: string,\n opts: GitOptions,\n) => {\n const args = [\n 'clone',\n '-b',\n revDoc.ref,\n repo,\n target,\n '--recurse-submodules',\n ]\n if (maybeShallow(repo, opts)) {\n args.push('--depth=1')\n }\n if (isWindows(opts)) {\n args.push('--config', 'core.longpaths=true')\n }\n await spawn(args, opts)\n return revDoc.sha\n}\n\n// just the head. clone it\nconst plain = async (\n repo: string,\n revDoc: RevDocEntry,\n target: string,\n opts: GitOptions,\n) => {\n const args = ['clone', repo, target, '--recurse-submodules']\n if (maybeShallow(repo, opts)) {\n args.push('--depth=1')\n }\n if (isWindows(opts)) {\n args.push('--config', 'core.longpaths=true')\n }\n await spawn(args, opts)\n return revDoc.sha\n}\n\nconst updateSubmodules = async (target: string, opts: GitOptions) => {\n const hasSubmodules = await stat(`${target}/.gitmodules`)\n .then(() => true)\n .catch(() => false)\n if (!hasSubmodules) {\n return\n }\n await spawn(\n ['submodule', 'update', '-q', '--init', '--recursive'],\n { ...opts, cwd: target },\n )\n}\n\nconst unresolved = async (\n repo: string,\n ref: string,\n target: string,\n opts: GitOptions,\n) => {\n // can't do this one shallowly, because the ref isn't advertised\n // but we can avoid checking out the working dir twice, at least\n const lp =\n isWindows(opts) ? ['--config', 'core.longpaths=true'] : []\n const cloneArgs = [\n 'clone',\n '--mirror',\n '-q',\n repo,\n target + '/.git',\n ]\n const git = (args: string[]) =>\n spawn(args, { ...opts, cwd: target })\n await mkdir(target, { recursive: true })\n await git(cloneArgs.concat(lp))\n await git(['init'])\n await git(['checkout', ref])\n await updateSubmodules(target, opts)\n const result = await git(['rev-parse', '--revs-only', 'HEAD'])\n return result.stdout\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"find.d.ts","sourceRoot":"","sources":["../../src/find.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,QAAQ,GAAG;IACrB,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;CACd,CAAA;AACD,eAAO,MAAM,IAAI,oBAGd,QAAQ,gCAWV,CAAA"}
|
package/dist/esm/find.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { dirname } from 'path';
|
|
2
|
+
import { is } from './is.js';
|
|
3
|
+
export const find = async ({ cwd = process.cwd(), root, } = {}) => {
|
|
4
|
+
while (true) {
|
|
5
|
+
if (await is({ cwd })) {
|
|
6
|
+
return cwd;
|
|
7
|
+
}
|
|
8
|
+
const next = dirname(cwd);
|
|
9
|
+
if (cwd === root || cwd === next) {
|
|
10
|
+
return undefined;
|
|
11
|
+
}
|
|
12
|
+
cwd = next;
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=find.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"find.js","sourceRoot":"","sources":["../../src/find.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;AAC9B,OAAO,EAAE,EAAE,EAAE,MAAM,SAAS,CAAA;AAM5B,MAAM,CAAC,MAAM,IAAI,GAAG,KAAK,EAAE,EACzB,GAAG,GAAG,OAAO,CAAC,GAAG,EAAE,EACnB,IAAI,MACQ,EAAE,EAAE,EAAE;IAClB,OAAO,IAAI,EAAE,CAAC;QACZ,IAAI,MAAM,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;YACtB,OAAO,GAAG,CAAA;QACZ,CAAC;QACD,MAAM,IAAI,GAAG,OAAO,CAAC,GAAG,CAAC,CAAA;QACzB,IAAI,GAAG,KAAK,IAAI,IAAI,GAAG,KAAK,IAAI,EAAE,CAAC;YACjC,OAAO,SAAS,CAAA;QAClB,CAAC;QACD,GAAG,GAAG,IAAI,CAAA;IACZ,CAAC;AACH,CAAC,CAAA","sourcesContent":["import { dirname } from 'path'\nimport { is } from './is.js'\n\nexport type FindOpts = {\n cwd?: string\n root?: string\n}\nexport const find = async ({\n cwd = process.cwd(),\n root,\n}: FindOpts = {}) => {\n while (true) {\n if (await is({ cwd })) {\n return cwd\n }\n const next = dirname(cwd)\n if (cwd === root || cwd === next) {\n return undefined\n }\n cwd = next\n }\n}\n"]}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import type { PickManifestOptions } from '@vltpkg/pick-manifest';
|
|
2
|
+
import type { Spec } from '@vltpkg/spec';
|
|
3
|
+
import type { SpawnOptions } from 'child_process';
|
|
4
|
+
import type { WrapOptions } from 'retry';
|
|
5
|
+
export * from './clone.js';
|
|
6
|
+
export * from './find.js';
|
|
7
|
+
export * from './is-clean.js';
|
|
8
|
+
export * from './is.js';
|
|
9
|
+
export * from './resolve.js';
|
|
10
|
+
export * from './revs.js';
|
|
11
|
+
export * from './spawn.js';
|
|
12
|
+
/**
|
|
13
|
+
* This extends all options that can be passed to spawn() or pickManifest.
|
|
14
|
+
*/
|
|
15
|
+
export type GitOptions = PickManifestOptions & SpawnOptions & {
|
|
16
|
+
/** the path to git binary, or 'false' to prevent all git operations */
|
|
17
|
+
git?: string | false;
|
|
18
|
+
/** the current working directory to perform git operations in */
|
|
19
|
+
cwd?: string;
|
|
20
|
+
/** Parsed git specifier to be cloned, if we have one */
|
|
21
|
+
spec?: Spec;
|
|
22
|
+
/**
|
|
23
|
+
* Set to a boolean to force cloning with/without `--depth=1`. If left
|
|
24
|
+
* undefined, then shallow cloning will only be performed on hosts known to
|
|
25
|
+
* support it.
|
|
26
|
+
*/
|
|
27
|
+
'git-shallow'?: boolean;
|
|
28
|
+
/** Only relevant if `retry` is unset. Value for retry.retries, default 2 */
|
|
29
|
+
'fetch-retries'?: WrapOptions['retries'];
|
|
30
|
+
/** Only relevant if `retry` is unset. Value for retry.factor, default 10 */
|
|
31
|
+
'fetch-retry-factor'?: WrapOptions['factor'];
|
|
32
|
+
/**
|
|
33
|
+
* Only relevant if `retry` is unset. Value for retry.maxTimeout, default
|
|
34
|
+
* 60_000
|
|
35
|
+
*/
|
|
36
|
+
'fetch-retry-maxtimeout'?: WrapOptions['maxTimeout'];
|
|
37
|
+
/**
|
|
38
|
+
* Only relevant if `retry` is unset. Value for retry.minTimeout, default
|
|
39
|
+
* 1_000
|
|
40
|
+
*/
|
|
41
|
+
'fetch-retry-mintimeout'?: WrapOptions['minTimeout'];
|
|
42
|
+
/**
|
|
43
|
+
* Used to test platform-specific behavior.
|
|
44
|
+
* @internal
|
|
45
|
+
*/
|
|
46
|
+
fakePlatform?: NodeJS.Platform;
|
|
47
|
+
/**
|
|
48
|
+
* Just to test rev lookup without continually clearing the cache
|
|
49
|
+
*/
|
|
50
|
+
noGitRevCache?: boolean;
|
|
51
|
+
};
|
|
52
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAChE,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AACxC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,eAAe,CAAA;AACjD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,OAAO,CAAA;AAExC,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,eAAe,CAAA;AAC7B,cAAc,SAAS,CAAA;AACvB,cAAc,cAAc,CAAA;AAC5B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAE1B;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,mBAAmB,GAC1C,YAAY,GAAG;IACb,uEAAuE;IACvE,GAAG,CAAC,EAAE,MAAM,GAAG,KAAK,CAAA;IACpB,iEAAiE;IACjE,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,wDAAwD;IACxD,IAAI,CAAC,EAAE,IAAI,CAAA;IACX;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,4EAA4E;IAC5E,eAAe,CAAC,EAAE,WAAW,CAAC,SAAS,CAAC,CAAA;IACxC,4EAA4E;IAC5E,oBAAoB,CAAC,EAAE,WAAW,CAAC,QAAQ,CAAC,CAAA;IAC5C;;;OAGG;IACH,wBAAwB,CAAC,EAAE,WAAW,CAAC,YAAY,CAAC,CAAA;IACpD;;;OAGG;IACH,wBAAwB,CAAC,EAAE,WAAW,CAAC,YAAY,CAAC,CAAA;IACpD;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,QAAQ,CAAA;IAC9B;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAA;CACxB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAKA,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,eAAe,CAAA;AAC7B,cAAc,SAAS,CAAA;AACvB,cAAc,cAAc,CAAA;AAC5B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA","sourcesContent":["import type { PickManifestOptions } from '@vltpkg/pick-manifest'\nimport type { Spec } from '@vltpkg/spec'\nimport type { SpawnOptions } from 'child_process'\nimport type { WrapOptions } from 'retry'\n\nexport * from './clone.js'\nexport * from './find.js'\nexport * from './is-clean.js'\nexport * from './is.js'\nexport * from './resolve.js'\nexport * from './revs.js'\nexport * from './spawn.js'\n\n/**\n * This extends all options that can be passed to spawn() or pickManifest.\n */\nexport type GitOptions = PickManifestOptions &\n SpawnOptions & {\n /** the path to git binary, or 'false' to prevent all git operations */\n git?: string | false\n /** the current working directory to perform git operations in */\n cwd?: string\n /** Parsed git specifier to be cloned, if we have one */\n spec?: Spec\n /**\n * Set to a boolean to force cloning with/without `--depth=1`. If left\n * undefined, then shallow cloning will only be performed on hosts known to\n * support it.\n */\n 'git-shallow'?: boolean\n /** Only relevant if `retry` is unset. Value for retry.retries, default 2 */\n 'fetch-retries'?: WrapOptions['retries']\n /** Only relevant if `retry` is unset. Value for retry.factor, default 10 */\n 'fetch-retry-factor'?: WrapOptions['factor']\n /**\n * Only relevant if `retry` is unset. Value for retry.maxTimeout, default\n * 60_000\n */\n 'fetch-retry-maxtimeout'?: WrapOptions['maxTimeout']\n /**\n * Only relevant if `retry` is unset. Value for retry.minTimeout, default\n * 1_000\n */\n 'fetch-retry-mintimeout'?: WrapOptions['minTimeout']\n /**\n * Used to test platform-specific behavior.\n * @internal\n */\n fakePlatform?: NodeJS.Platform\n /**\n * Just to test rev lookup without continually clearing the cache\n */\n noGitRevCache?: boolean\n }\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"is-clean.d.ts","sourceRoot":"","sources":["../../src/is-clean.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO,iCAYnB,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { error } from '@vltpkg/error-cause';
|
|
2
|
+
import { spawn } from './spawn.js';
|
|
3
|
+
export const isClean = async (opts = {}) => {
|
|
4
|
+
const result = await spawn(['status', '--porcelain=v1', '-uno'], opts);
|
|
5
|
+
if (result.status || result.signal) {
|
|
6
|
+
throw error('git isClean check failed', result);
|
|
7
|
+
}
|
|
8
|
+
for (const line of result.stdout.split(/\r?\n+/)) {
|
|
9
|
+
if (line.trim())
|
|
10
|
+
return false;
|
|
11
|
+
}
|
|
12
|
+
return true;
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=is-clean.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"is-clean.js","sourceRoot":"","sources":["../../src/is-clean.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAA;AAC3C,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAElC,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE;IACzC,MAAM,MAAM,GAAG,MAAM,KAAK,CACxB,CAAC,QAAQ,EAAE,gBAAgB,EAAE,MAAM,CAAC,EACpC,IAAI,CACL,CAAA;IACD,IAAI,MAAM,CAAC,MAAM,IAAI,MAAM,CAAC,MAAM,EAAE,CAAC;QACnC,MAAM,KAAK,CAAC,0BAA0B,EAAE,MAAM,CAAC,CAAA;IACjD,CAAC;IACD,KAAK,MAAM,IAAI,IAAI,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC;QACjD,IAAI,IAAI,CAAC,IAAI,EAAE;YAAE,OAAO,KAAK,CAAA;IAC/B,CAAC;IACD,OAAO,IAAI,CAAA;AACb,CAAC,CAAA","sourcesContent":["import { error } from '@vltpkg/error-cause'\nimport { spawn } from './spawn.js'\n\nexport const isClean = async (opts = {}) => {\n const result = await spawn(\n ['status', '--porcelain=v1', '-uno'],\n opts,\n )\n if (result.status || result.signal) {\n throw error('git isClean check failed', result)\n }\n for (const line of result.stdout.split(/\\r?\\n+/)) {\n if (line.trim()) return false\n }\n return true\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"is-windows.d.ts","sourceRoot":"","sources":["../../src/is-windows.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,YAAY,CAAA;AAC5C,eAAO,MAAM,SAAS,SAAU,UAAU,YACW,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"is-windows.js","sourceRoot":"","sources":["../../src/is-windows.ts"],"names":[],"mappings":"AACA,MAAM,CAAC,MAAM,SAAS,GAAG,CAAC,IAAgB,EAAE,EAAE,CAC5C,CAAC,IAAI,CAAC,YAAY,IAAI,OAAO,CAAC,QAAQ,CAAC,KAAK,OAAO,CAAA","sourcesContent":["import { type GitOptions } from './index.js'\nexport const isWindows = (opts: GitOptions) =>\n (opts.fakePlatform || process.platform) === 'win32'\n"]}
|
package/dist/esm/is.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"is.d.ts","sourceRoot":"","sources":["../../src/is.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,EAAE;;sBAIZ,CAAA"}
|
package/dist/esm/is.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"is.js","sourceRoot":"","sources":["../../src/is.ts"],"names":[],"mappings":"AAAA,wEAAwE;AACxE,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAClC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CACjD,IAAI,CAAC,GAAG,GAAG,OAAO,CAAC,CAAC,IAAI,CACtB,GAAG,EAAE,CAAC,IAAI,EACV,GAAG,EAAE,CAAC,KAAK,CACZ,CAAA","sourcesContent":["// not an airtight indicator, but a good gut-check to even bother trying\nimport { stat } from 'fs/promises'\nexport const is = ({ cwd = process.cwd() } = {}) =>\n stat(cwd + '/.git').then(\n () => true,\n () => false,\n )\n"]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { RevDoc } from '@vltpkg/types';
|
|
2
|
+
/**
|
|
3
|
+
* turn an array of lines from `git ls-remote` into a thing
|
|
4
|
+
* vaguely resembling a packument, where docs are a resolved ref
|
|
5
|
+
*/
|
|
6
|
+
export declare const linesToRevs: (lines: string[]) => RevDoc;
|
|
7
|
+
//# sourceMappingURL=lines-to-revs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lines-to-revs.d.ts","sourceRoot":"","sources":["../../src/lines-to-revs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAwB,MAAM,eAAe,CAAA;AAI5D;;;GAGG;AACH,eAAO,MAAM,WAAW,UAAW,MAAM,EAAE,KAAG,MAS3C,CAAA"}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import { parse } from '@vltpkg/semver';
|
|
2
|
+
import { error } from '@vltpkg/error-cause';
|
|
3
|
+
/**
|
|
4
|
+
* turn an array of lines from `git ls-remote` into a thing
|
|
5
|
+
* vaguely resembling a packument, where docs are a resolved ref
|
|
6
|
+
*/
|
|
7
|
+
export const linesToRevs = (lines) => finish(lines.reduce(linesToRevsReducer, {
|
|
8
|
+
name: '',
|
|
9
|
+
versions: {},
|
|
10
|
+
'dist-tags': {},
|
|
11
|
+
refs: {},
|
|
12
|
+
shas: {},
|
|
13
|
+
}));
|
|
14
|
+
const finish = (revs) => distTags(versions(shaList(peelTags(revs))));
|
|
15
|
+
const versions = (revs) => {
|
|
16
|
+
for (const [version, entry] of Object.entries(revs.versions)) {
|
|
17
|
+
entry.version = version;
|
|
18
|
+
}
|
|
19
|
+
return revs;
|
|
20
|
+
};
|
|
21
|
+
// We can check out shallow clones on specific SHAs if we have a ref
|
|
22
|
+
const shaList = (revs) => {
|
|
23
|
+
Object.entries(revs.refs).forEach(([ref, doc]) => {
|
|
24
|
+
const shas = revs.shas[doc.sha];
|
|
25
|
+
if (!shas) {
|
|
26
|
+
revs.shas[doc.sha] = [ref];
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
shas.push(ref);
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
return revs;
|
|
33
|
+
};
|
|
34
|
+
// Replace any tags with their ^{} counterparts, if those exist
|
|
35
|
+
const peelTags = (revs) => {
|
|
36
|
+
Object.entries(revs.refs)
|
|
37
|
+
.filter(([ref]) => ref.endsWith('^{}'))
|
|
38
|
+
.forEach(([ref, peeled]) => {
|
|
39
|
+
const unpeeled = revs.refs[ref.replace(/\^\{\}$/, '')];
|
|
40
|
+
if (unpeeled) {
|
|
41
|
+
unpeeled.sha = peeled.sha;
|
|
42
|
+
delete revs.refs[ref];
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
return revs;
|
|
46
|
+
};
|
|
47
|
+
const distTags = (revs) => {
|
|
48
|
+
// not entirely sure what situations would result in an
|
|
49
|
+
// ichabod repo, but best to be careful in Sleepy Hollow anyway
|
|
50
|
+
/* c8 ignore start */
|
|
51
|
+
const HEAD = revs.refs.HEAD ?? {
|
|
52
|
+
sha: undefined,
|
|
53
|
+
};
|
|
54
|
+
/* c8 ignore stop */
|
|
55
|
+
for (const [v, ver] of Object.entries(revs.versions)) {
|
|
56
|
+
// simulate a dist-tags with latest pointing at the
|
|
57
|
+
// 'latest' branch if one exists and is a version,
|
|
58
|
+
// or HEAD if not.
|
|
59
|
+
if (revs.refs.latest && ver.sha === revs.refs.latest.sha) {
|
|
60
|
+
revs['dist-tags'].latest = v;
|
|
61
|
+
}
|
|
62
|
+
else if (ver.sha === HEAD.sha) {
|
|
63
|
+
revs['dist-tags'].HEAD = v;
|
|
64
|
+
if (!revs.refs.latest) {
|
|
65
|
+
revs['dist-tags'].latest = v;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
return revs;
|
|
70
|
+
};
|
|
71
|
+
const refType = (ref) => {
|
|
72
|
+
if (ref.startsWith('refs/tags/')) {
|
|
73
|
+
return 'tag';
|
|
74
|
+
}
|
|
75
|
+
if (ref.startsWith('refs/heads/')) {
|
|
76
|
+
return 'branch';
|
|
77
|
+
}
|
|
78
|
+
if (ref.startsWith('refs/pull/')) {
|
|
79
|
+
return 'pull';
|
|
80
|
+
}
|
|
81
|
+
if (ref === 'HEAD') {
|
|
82
|
+
return 'head';
|
|
83
|
+
}
|
|
84
|
+
// Could be anything, ignore for now
|
|
85
|
+
/* c8 ignore next */
|
|
86
|
+
return 'other';
|
|
87
|
+
};
|
|
88
|
+
// return the doc, or null if we should ignore it.
|
|
89
|
+
const lineToRevDoc = (line) => {
|
|
90
|
+
let [sha, rawRef] = line.trim().split(/\s+/, 2);
|
|
91
|
+
if (sha === undefined || rawRef === undefined)
|
|
92
|
+
return undefined;
|
|
93
|
+
sha = sha.trim();
|
|
94
|
+
rawRef = rawRef.trim();
|
|
95
|
+
const type = refType(rawRef);
|
|
96
|
+
switch (type) {
|
|
97
|
+
case 'tag': {
|
|
98
|
+
// refs/tags/foo^{} is the 'peeled tag', ie the commit
|
|
99
|
+
// that is tagged by refs/tags/foo they resolve to the same
|
|
100
|
+
// content, just different objects in git's data structure.
|
|
101
|
+
// But, we care about the thing the tag POINTS to, not the tag
|
|
102
|
+
// object itself, so we only look at the peeled tag refs, and
|
|
103
|
+
// ignore the pointer.
|
|
104
|
+
// For now, though, we have to save both, because some tags
|
|
105
|
+
// don't have peels, if they were not annotated.
|
|
106
|
+
const ref = rawRef.slice('refs/tags/'.length);
|
|
107
|
+
return { name: '', version: '', sha, ref, rawRef, type };
|
|
108
|
+
}
|
|
109
|
+
case 'branch': {
|
|
110
|
+
const ref = rawRef.slice('refs/heads/'.length);
|
|
111
|
+
return { name: '', version: '', sha, ref, rawRef, type };
|
|
112
|
+
}
|
|
113
|
+
case 'pull': {
|
|
114
|
+
// NB: merged pull requests installable with #pull/123/merge
|
|
115
|
+
// for the merged pr, or #pull/123 for the PR head
|
|
116
|
+
const ref = rawRef.slice('refs/'.length).replace(/\/head$/, '');
|
|
117
|
+
return { name: '', version: '', sha, ref, rawRef, type };
|
|
118
|
+
}
|
|
119
|
+
case 'head': {
|
|
120
|
+
const ref = 'HEAD';
|
|
121
|
+
return { name: '', version: '', sha, ref, rawRef, type };
|
|
122
|
+
}
|
|
123
|
+
default:
|
|
124
|
+
// at this point, all we can do is leave the ref un-munged
|
|
125
|
+
return { name: '', version: '', sha, ref: rawRef, rawRef, type };
|
|
126
|
+
}
|
|
127
|
+
};
|
|
128
|
+
const linesToRevsReducer = (revs, line) => {
|
|
129
|
+
const doc = lineToRevDoc(line);
|
|
130
|
+
if (!doc) {
|
|
131
|
+
return revs;
|
|
132
|
+
}
|
|
133
|
+
revs.refs[doc.ref] = doc;
|
|
134
|
+
revs.refs[doc.rawRef] = doc;
|
|
135
|
+
if (doc.type === 'tag') {
|
|
136
|
+
// try to pull a semver value out of tags like `release-v1.2.3`
|
|
137
|
+
// which is a pretty common pattern.
|
|
138
|
+
const match = doc.ref.endsWith('^{}') ?
|
|
139
|
+
null
|
|
140
|
+
: /v?(\d+\.\d+\.\d+(?:[-+].+)?)$/.exec(doc.ref);
|
|
141
|
+
if (match) {
|
|
142
|
+
/* c8 ignore start */
|
|
143
|
+
if (!match[1])
|
|
144
|
+
throw error(`invalid semver tag`, { found: doc.ref });
|
|
145
|
+
/* c8 ignore stop */
|
|
146
|
+
const v = parse(match[1]);
|
|
147
|
+
if (v)
|
|
148
|
+
revs.versions[String(v)] = doc;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
return revs;
|
|
152
|
+
};
|
|
153
|
+
//# sourceMappingURL=lines-to-revs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lines-to-revs.js","sourceRoot":"","sources":["../../src/lines-to-revs.ts"],"names":[],"mappings":"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","sourcesContent":["import { RevDoc, RevDocEntry, RefType } from '@vltpkg/types'\nimport { parse } from '@vltpkg/semver'\nimport { error } from '@vltpkg/error-cause'\n\n/**\n * turn an array of lines from `git ls-remote` into a thing\n * vaguely resembling a packument, where docs are a resolved ref\n */\nexport const linesToRevs = (lines: string[]): RevDoc =>\n finish(\n lines.reduce(linesToRevsReducer, {\n name: '',\n versions: {},\n 'dist-tags': {},\n refs: {},\n shas: {},\n }),\n )\n\nconst finish = (revs: RevDoc): RevDoc =>\n distTags(versions(shaList(peelTags(revs))))\n\nconst versions = (revs: RevDoc): RevDoc => {\n for (const [version, entry] of Object.entries(revs.versions)) {\n entry.version = version\n }\n return revs\n}\n\n// We can check out shallow clones on specific SHAs if we have a ref\nconst shaList = (revs: RevDoc): RevDoc => {\n Object.entries(revs.refs).forEach(([ref, doc]) => {\n const shas = revs.shas[doc.sha]\n if (!shas) {\n revs.shas[doc.sha] = [ref]\n } else {\n shas.push(ref)\n }\n })\n return revs\n}\n\n// Replace any tags with their ^{} counterparts, if those exist\nconst peelTags = (revs: RevDoc) => {\n Object.entries(revs.refs)\n .filter(([ref]) => ref.endsWith('^{}'))\n .forEach(([ref, peeled]) => {\n const unpeeled = revs.refs[ref.replace(/\\^\\{\\}$/, '')]\n if (unpeeled) {\n unpeeled.sha = peeled.sha\n delete revs.refs[ref]\n }\n })\n return revs\n}\n\nconst distTags = (revs: RevDoc) => {\n // not entirely sure what situations would result in an\n // ichabod repo, but best to be careful in Sleepy Hollow anyway\n /* c8 ignore start */\n const HEAD = revs.refs.HEAD ?? {\n sha: undefined,\n }\n /* c8 ignore stop */\n for (const [v, ver] of Object.entries(revs.versions)) {\n // simulate a dist-tags with latest pointing at the\n // 'latest' branch if one exists and is a version,\n // or HEAD if not.\n if (revs.refs.latest && ver.sha === revs.refs.latest.sha) {\n revs['dist-tags'].latest = v\n } else if (ver.sha === HEAD.sha) {\n revs['dist-tags'].HEAD = v\n if (!revs.refs.latest) {\n revs['dist-tags'].latest = v\n }\n }\n }\n return revs\n}\n\nconst refType = (ref: string): RefType => {\n if (ref.startsWith('refs/tags/')) {\n return 'tag'\n }\n if (ref.startsWith('refs/heads/')) {\n return 'branch'\n }\n if (ref.startsWith('refs/pull/')) {\n return 'pull'\n }\n if (ref === 'HEAD') {\n return 'head'\n }\n // Could be anything, ignore for now\n /* c8 ignore next */\n return 'other'\n}\n\n// return the doc, or null if we should ignore it.\nconst lineToRevDoc = (line: string): RevDocEntry | undefined => {\n let [sha, rawRef] = line.trim().split(/\\s+/, 2)\n if (sha === undefined || rawRef === undefined) return undefined\n sha = sha.trim()\n rawRef = rawRef.trim()\n\n const type = refType(rawRef)\n\n switch (type) {\n case 'tag': {\n // refs/tags/foo^{} is the 'peeled tag', ie the commit\n // that is tagged by refs/tags/foo they resolve to the same\n // content, just different objects in git's data structure.\n // But, we care about the thing the tag POINTS to, not the tag\n // object itself, so we only look at the peeled tag refs, and\n // ignore the pointer.\n // For now, though, we have to save both, because some tags\n // don't have peels, if they were not annotated.\n const ref = rawRef.slice('refs/tags/'.length)\n return { name: '', version: '', sha, ref, rawRef, type }\n }\n\n case 'branch': {\n const ref = rawRef.slice('refs/heads/'.length)\n return { name: '', version: '', sha, ref, rawRef, type }\n }\n\n case 'pull': {\n // NB: merged pull requests installable with #pull/123/merge\n // for the merged pr, or #pull/123 for the PR head\n const ref = rawRef.slice('refs/'.length).replace(/\\/head$/, '')\n return { name: '', version: '', sha, ref, rawRef, type }\n }\n\n case 'head': {\n const ref = 'HEAD'\n return { name: '', version: '', sha, ref, rawRef, type }\n }\n\n default:\n // at this point, all we can do is leave the ref un-munged\n return { name: '', version: '', sha, ref: rawRef, rawRef, type }\n }\n}\n\nconst linesToRevsReducer = (revs: RevDoc, line: string) => {\n const doc = lineToRevDoc(line)\n\n if (!doc) {\n return revs\n }\n\n revs.refs[doc.ref] = doc\n revs.refs[doc.rawRef] = doc\n\n if (doc.type === 'tag') {\n // try to pull a semver value out of tags like `release-v1.2.3`\n // which is a pretty common pattern.\n const match =\n doc.ref.endsWith('^{}') ?\n null\n : /v?(\\d+\\.\\d+\\.\\d+(?:[-+].+)?)$/.exec(doc.ref)\n if (match) {\n /* c8 ignore start */\n if (!match[1])\n throw error(`invalid semver tag`, { found: doc.ref })\n /* c8 ignore stop */\n const v = parse(match[1])\n if (v) revs.versions[String(v)] = doc\n }\n }\n\n return revs\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"make-error.d.ts","sourceRoot":"","sources":["../../src/make-error.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,iBAAiB,EAClB,MAAM,uBAAuB,CAAA;AAoB9B,eAAO,MAAM,SAAS,WACZ,iBAAiB,GAAG,iBAAiB,KAC5C,KAAK,GAAG;IAAE,WAAW,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,OAAO,CAAA;CAY3C,CAAA"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { error } from '@vltpkg/error-cause';
|
|
2
|
+
const connectionErrorRe = new RegExp([
|
|
3
|
+
'remote error: Internal Server Error',
|
|
4
|
+
'The remote end hung up unexpectedly',
|
|
5
|
+
'Connection timed out',
|
|
6
|
+
'Operation timed out',
|
|
7
|
+
'Failed to connect to .* Timed out',
|
|
8
|
+
'Connection reset by peer',
|
|
9
|
+
'SSL_ERROR_SYSCALL',
|
|
10
|
+
'The requested URL returned error: 503',
|
|
11
|
+
].join('|'));
|
|
12
|
+
const missingPathspecRe = /pathspec .* did not match any file\(s\) known to git/;
|
|
13
|
+
export const makeError = (result) => connectionErrorRe.test(result.stderr) ?
|
|
14
|
+
Object.assign(error('A git connection error occurred', result), {
|
|
15
|
+
shouldRetry: (n) => n < 3,
|
|
16
|
+
})
|
|
17
|
+
: Object.assign(missingPathspecRe.test(result.stderr) ?
|
|
18
|
+
error('The git reference could not be found', result)
|
|
19
|
+
: error('An unknown git error occurred', result), {
|
|
20
|
+
shouldRetry: () => false,
|
|
21
|
+
});
|
|
22
|
+
//# sourceMappingURL=make-error.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"make-error.js","sourceRoot":"","sources":["../../src/make-error.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAA;AAE3C,MAAM,iBAAiB,GAAG,IAAI,MAAM,CAClC;IACE,qCAAqC;IACrC,qCAAqC;IACrC,sBAAsB;IACtB,qBAAqB;IACrB,mCAAmC;IACnC,0BAA0B;IAC1B,mBAAmB;IACnB,uCAAuC;CACxC,CAAC,IAAI,CAAC,GAAG,CAAC,CACZ,CAAA;AAED,MAAM,iBAAiB,GACrB,sDAAsD,CAAA;AAExD,MAAM,CAAC,MAAM,SAAS,GAAG,CACvB,MAA6C,EACI,EAAE,CACnD,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;IACrC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,iCAAiC,EAAE,MAAM,CAAC,EAAE;QAC9D,WAAW,EAAE,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC;KAClC,CAAC;IACJ,CAAC,CAAC,MAAM,CAAC,MAAM,CACX,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;QACrC,KAAK,CAAC,sCAAsC,EAAE,MAAM,CAAC;QACvD,CAAC,CAAC,KAAK,CAAC,+BAA+B,EAAE,MAAM,CAAC,EAChD;QACE,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK;KACzB,CACF,CAAA","sourcesContent":["import {\n SpawnResultStderr,\n SpawnResultString,\n} from '@vltpkg/promise-spawn'\n\nimport { error } from '@vltpkg/error-cause'\n\nconst connectionErrorRe = new RegExp(\n [\n 'remote error: Internal Server Error',\n 'The remote end hung up unexpectedly',\n 'Connection timed out',\n 'Operation timed out',\n 'Failed to connect to .* Timed out',\n 'Connection reset by peer',\n 'SSL_ERROR_SYSCALL',\n 'The requested URL returned error: 503',\n ].join('|'),\n)\n\nconst missingPathspecRe =\n /pathspec .* did not match any file\\(s\\) known to git/\n\nexport const makeError = (\n result: SpawnResultStderr & SpawnResultString,\n): Error & { shouldRetry: (n: number) => boolean } =>\n connectionErrorRe.test(result.stderr) ?\n Object.assign(error('A git connection error occurred', result), {\n shouldRetry: (n: number) => n < 3,\n })\n : Object.assign(\n missingPathspecRe.test(result.stderr) ?\n error('The git reference could not be found', result)\n : error('An unknown git error occurred', result),\n {\n shouldRetry: () => false,\n },\n )\n"]}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { PromiseSpawnOptionsStderrString, PromiseSpawnOptionsStdoutString } from '@vltpkg/promise-spawn';
|
|
2
|
+
import { SpawnOptions } from 'child_process';
|
|
3
|
+
export declare const opts: (opts?: SpawnOptions) => PromiseSpawnOptionsStderrString & PromiseSpawnOptionsStdoutString;
|
|
4
|
+
//# sourceMappingURL=opts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opts.d.ts","sourceRoot":"","sources":["../../src/opts.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,+BAA+B,EAC/B,+BAA+B,EAChC,MAAM,uBAAuB,CAAA;AAC9B,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAA;AAQ5C,eAAO,MAAM,IAAI,UACT,YAAY,KACjB,+BAA+B,GAChC,+BAOA,CAAA"}
|
package/dist/esm/opts.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Values we want to set if they're not already defined by the end user
|
|
2
|
+
// This defaults to accepting new ssh host key fingerprints
|
|
3
|
+
const gitEnv = {
|
|
4
|
+
GIT_ASKPASS: 'echo',
|
|
5
|
+
GIT_SSH_COMMAND: 'ssh -oStrictHostKeyChecking=accept-new',
|
|
6
|
+
};
|
|
7
|
+
export const opts = (opts = {}) => ({
|
|
8
|
+
acceptFail: true,
|
|
9
|
+
...opts,
|
|
10
|
+
env: opts.env ?? { ...gitEnv, ...process.env },
|
|
11
|
+
stdio: 'pipe',
|
|
12
|
+
stdioString: true,
|
|
13
|
+
shell: false,
|
|
14
|
+
});
|
|
15
|
+
//# sourceMappingURL=opts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opts.js","sourceRoot":"","sources":["../../src/opts.ts"],"names":[],"mappings":"AAAA,uEAAuE;AAQvE,2DAA2D;AAC3D,MAAM,MAAM,GAAG;IACb,WAAW,EAAE,MAAM;IACnB,eAAe,EAAE,wCAAwC;CAC1D,CAAA;AAED,MAAM,CAAC,MAAM,IAAI,GAAG,CAClB,OAAqB,EAAE,EAES,EAAE,CAAC,CAAC;IACpC,UAAU,EAAE,IAAI;IAChB,GAAG,IAAI;IACP,GAAG,EAAE,IAAI,CAAC,GAAG,IAAI,EAAE,GAAG,MAAM,EAAE,GAAG,OAAO,CAAC,GAAG,EAAE;IAC9C,KAAK,EAAE,MAAM;IACb,WAAW,EAAE,IAAI;IACjB,KAAK,EAAE,KAAK;CACb,CAAC,CAAA","sourcesContent":["// Values we want to set if they're not already defined by the end user\n\nimport {\n PromiseSpawnOptionsStderrString,\n PromiseSpawnOptionsStdoutString,\n} from '@vltpkg/promise-spawn'\nimport { SpawnOptions } from 'child_process'\n\n// This defaults to accepting new ssh host key fingerprints\nconst gitEnv = {\n GIT_ASKPASS: 'echo',\n GIT_SSH_COMMAND: 'ssh -oStrictHostKeyChecking=accept-new',\n}\n\nexport const opts = (\n opts: SpawnOptions = {},\n): PromiseSpawnOptionsStderrString &\n PromiseSpawnOptionsStdoutString => ({\n acceptFail: true,\n ...opts,\n env: opts.env ?? { ...gitEnv, ...process.env },\n stdio: 'pipe',\n stdioString: true,\n shell: false,\n})\n"]}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { RevDoc } from '@vltpkg/types';
|
|
2
|
+
import { type GitOptions } from './index.js';
|
|
3
|
+
/**
|
|
4
|
+
* Given a repo and either a ref or a git specifier Spec object, resolve the
|
|
5
|
+
* appropriate ref that we should clone, ideally witout actually cloning the
|
|
6
|
+
* repository.
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export declare const resolve: (repo: string, ref?: string, opts?: GitOptions) => Promise<import("@vltpkg/types").RevDocEntry | undefined>;
|
|
11
|
+
/**
|
|
12
|
+
* Given a repo's RevDoc object and either a ref or a git specifier Spec
|
|
13
|
+
* object, resolve the appropriate ref that we should clone, witout actually
|
|
14
|
+
* cloning the repository.
|
|
15
|
+
*/
|
|
16
|
+
export declare const resolveRef: (revDoc: RevDoc, ref?: string, opts?: GitOptions) => import("@vltpkg/types").RevDocEntry | undefined;
|
|
17
|
+
//# sourceMappingURL=resolve.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolve.d.ts","sourceRoot":"","sources":["../../src/resolve.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAA;AAEtC,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,YAAY,CAAA;AAG5C;;;;;;GAMG;AACH,eAAO,MAAM,OAAO,SACZ,MAAM,uBAEN,UAAU,6DAMjB,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,UAAU,WACb,MAAM,uBAER,UAAU,oDAoBjB,CAAA"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { pickManifest } from '@vltpkg/pick-manifest';
|
|
2
|
+
import { revs } from './revs.js';
|
|
3
|
+
/**
|
|
4
|
+
* Given a repo and either a ref or a git specifier Spec object, resolve the
|
|
5
|
+
* appropriate ref that we should clone, ideally witout actually cloning the
|
|
6
|
+
* repository.
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export const resolve = async (repo, ref = 'HEAD', opts = {}) => {
|
|
11
|
+
const revDoc = await revs(repo, opts);
|
|
12
|
+
/* no resolution possible if we can't read the repo */
|
|
13
|
+
if (!revDoc)
|
|
14
|
+
return undefined;
|
|
15
|
+
return resolveRef(revDoc, ref, opts);
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Given a repo's RevDoc object and either a ref or a git specifier Spec
|
|
19
|
+
* object, resolve the appropriate ref that we should clone, witout actually
|
|
20
|
+
* cloning the repository.
|
|
21
|
+
*/
|
|
22
|
+
export const resolveRef = (revDoc, ref = 'HEAD', opts = {}) => {
|
|
23
|
+
const { spec } = opts;
|
|
24
|
+
ref = spec?.gitCommittish || ref;
|
|
25
|
+
if (spec?.range) {
|
|
26
|
+
return pickManifest(revDoc, spec.range, opts);
|
|
27
|
+
}
|
|
28
|
+
if (!ref) {
|
|
29
|
+
return revDoc.refs.HEAD;
|
|
30
|
+
}
|
|
31
|
+
if (revDoc.refs[ref]) {
|
|
32
|
+
return revDoc.refs[ref];
|
|
33
|
+
}
|
|
34
|
+
/* c8 ignore start - typically found above, but just in case */
|
|
35
|
+
const sha = revDoc.shas[ref]?.[0];
|
|
36
|
+
if (sha) {
|
|
37
|
+
return revDoc.refs[sha];
|
|
38
|
+
}
|
|
39
|
+
/* c8 ignore stop */
|
|
40
|
+
return undefined;
|
|
41
|
+
};
|
|
42
|
+
//# sourceMappingURL=resolve.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolve.js","sourceRoot":"","sources":["../../src/resolve.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEpD,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAEhC;;;;;;GAMG;AACH,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAC1B,IAAY,EACZ,GAAG,GAAG,MAAM,EACZ,OAAmB,EAAE,EACrB,EAAE;IACF,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;IACrC,sDAAsD;IACtD,IAAI,CAAC,MAAM;QAAE,OAAO,SAAS,CAAA;IAC7B,OAAO,UAAU,CAAC,MAAM,EAAE,GAAG,EAAE,IAAI,CAAC,CAAA;AACtC,CAAC,CAAA;AAED;;;;GAIG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG,CACxB,MAAc,EACd,GAAG,GAAG,MAAM,EACZ,OAAmB,EAAE,EACrB,EAAE;IACF,MAAM,EAAE,IAAI,EAAE,GAAG,IAAI,CAAA;IACrB,GAAG,GAAG,IAAI,EAAE,aAAa,IAAI,GAAG,CAAA;IAChC,IAAI,IAAI,EAAE,KAAK,EAAE,CAAC;QAChB,OAAO,YAAY,CAAC,MAAM,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,CAAA;IAC/C,CAAC;IACD,IAAI,CAAC,GAAG,EAAE,CAAC;QACT,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,CAAA;IACzB,CAAC;IACD,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;QACrB,OAAO,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IACzB,CAAC;IACD,+DAA+D;IAC/D,MAAM,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;IACjC,IAAI,GAAG,EAAE,CAAC;QACR,OAAO,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IACzB,CAAC;IACD,oBAAoB;IACpB,OAAO,SAAS,CAAA;AAClB,CAAC,CAAA","sourcesContent":["import { RevDoc } from '@vltpkg/types'\nimport { pickManifest } from '@vltpkg/pick-manifest'\nimport { type GitOptions } from './index.js'\nimport { revs } from './revs.js'\n\n/**\n * Given a repo and either a ref or a git specifier Spec object, resolve the\n * appropriate ref that we should clone, ideally witout actually cloning the\n * repository.\n *\n *\n */\nexport const resolve = async (\n repo: string,\n ref = 'HEAD',\n opts: GitOptions = {},\n) => {\n const revDoc = await revs(repo, opts)\n /* no resolution possible if we can't read the repo */\n if (!revDoc) return undefined\n return resolveRef(revDoc, ref, opts)\n}\n\n/**\n * Given a repo's RevDoc object and either a ref or a git specifier Spec\n * object, resolve the appropriate ref that we should clone, witout actually\n * cloning the repository.\n */\nexport const resolveRef = (\n revDoc: RevDoc,\n ref = 'HEAD',\n opts: GitOptions = {},\n) => {\n const { spec } = opts\n ref = spec?.gitCommittish || ref\n if (spec?.range) {\n return pickManifest(revDoc, spec.range, opts)\n }\n if (!ref) {\n return revDoc.refs.HEAD\n }\n if (revDoc.refs[ref]) {\n return revDoc.refs[ref]\n }\n /* c8 ignore start - typically found above, but just in case */\n const sha = revDoc.shas[ref]?.[0]\n if (sha) {\n return revDoc.refs[sha]\n }\n /* c8 ignore stop */\n return undefined\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"revs.d.ts","sourceRoot":"","sources":["../../src/revs.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAEvC,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAA;AAsBtC,eAAO,MAAM,IAAI,SAAgB,MAAM,SAAQ,UAAU,gCAWxD,CAAA"}
|
package/dist/esm/revs.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { gitScpURL } from '@vltpkg/git-scp-url';
|
|
2
|
+
import { LRUCache } from 'lru-cache';
|
|
3
|
+
import { fileURLToPath } from 'url';
|
|
4
|
+
import { linesToRevs } from './lines-to-revs.js';
|
|
5
|
+
import { spawn } from './spawn.js';
|
|
6
|
+
const fetchMethod = async (repo, _, options) => {
|
|
7
|
+
const result = await spawn(['ls-remote', repo], options.context);
|
|
8
|
+
const revsDoc = linesToRevs(result.stdout.split('\n'));
|
|
9
|
+
return revsDoc;
|
|
10
|
+
};
|
|
11
|
+
const revsCache = new LRUCache({
|
|
12
|
+
max: 100,
|
|
13
|
+
ttl: 5 * 60 * 1000,
|
|
14
|
+
allowStaleOnFetchAbort: true,
|
|
15
|
+
allowStaleOnFetchRejection: true,
|
|
16
|
+
fetchMethod,
|
|
17
|
+
});
|
|
18
|
+
export const revs = async (repo, opts = {}) => {
|
|
19
|
+
repo = String(gitScpURL(repo) ?? repo).replace(/^git\+/, '');
|
|
20
|
+
if (repo.startsWith('file://'))
|
|
21
|
+
repo = fileURLToPath(repo);
|
|
22
|
+
if (opts.noGitRevCache) {
|
|
23
|
+
const result = await fetchMethod(repo, undefined, {
|
|
24
|
+
context: opts,
|
|
25
|
+
});
|
|
26
|
+
revsCache.set(repo, result);
|
|
27
|
+
return result;
|
|
28
|
+
}
|
|
29
|
+
return await revsCache.fetch(repo, { context: opts });
|
|
30
|
+
};
|
|
31
|
+
//# sourceMappingURL=revs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"revs.js","sourceRoot":"","sources":["../../src/revs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;AAK/C,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAA;AAEhD,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAElC,MAAM,WAAW,GAAG,KAAK,EACvB,IAAY,EACZ,CAAM,EACN,OAAgC,EAChC,EAAE;IACF,MAAM,MAAM,GACV,MAAM,KAAK,CAAC,CAAC,WAAW,EAAE,IAAI,CAAC,EAAE,OAAO,CAAC,OAAO,CAAC,CAAA;IACnD,MAAM,OAAO,GAAG,WAAW,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAA;IACtD,OAAO,OAAO,CAAA;AAChB,CAAC,CAAA;AAED,MAAM,SAAS,GAAG,IAAI,QAAQ,CAA6B;IACzD,GAAG,EAAE,GAAG;IACR,GAAG,EAAE,CAAC,GAAG,EAAE,GAAG,IAAI;IAClB,sBAAsB,EAAE,IAAI;IAC5B,0BAA0B,EAAE,IAAI;IAChC,WAAW;CACZ,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,IAAI,GAAG,KAAK,EAAE,IAAY,EAAE,OAAmB,EAAE,EAAE,EAAE;IAChE,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAA;IAC5D,IAAI,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC;QAAE,IAAI,GAAG,aAAa,CAAC,IAAI,CAAC,CAAA;IAC1D,IAAI,IAAI,CAAC,aAAa,EAAE,CAAC;QACvB,MAAM,MAAM,GAAG,MAAM,WAAW,CAAC,IAAI,EAAE,SAAS,EAAE;YAChD,OAAO,EAAE,IAAI;SACd,CAAC,CAAA;QACF,SAAS,CAAC,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,CAAA;QAC3B,OAAO,MAAM,CAAA;IACf,CAAC;IACD,OAAO,MAAM,SAAS,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,CAAA;AACvD,CAAC,CAAA","sourcesContent":["import { gitScpURL } from '@vltpkg/git-scp-url'\nimport {\n SpawnResultStderrString,\n SpawnResultStdoutString,\n} from '@vltpkg/promise-spawn'\nimport { LRUCache } from 'lru-cache'\nimport { fileURLToPath } from 'url'\nimport { GitOptions } from './index.js'\nimport { linesToRevs } from './lines-to-revs.js'\nimport { RevDoc } from '@vltpkg/types'\nimport { spawn } from './spawn.js'\n\nconst fetchMethod = async (\n repo: string,\n _: any,\n options: { context: GitOptions },\n) => {\n const result: SpawnResultStderrString & SpawnResultStdoutString =\n await spawn(['ls-remote', repo], options.context)\n const revsDoc = linesToRevs(result.stdout.split('\\n'))\n return revsDoc\n}\n\nconst revsCache = new LRUCache<string, RevDoc, GitOptions>({\n max: 100,\n ttl: 5 * 60 * 1000,\n allowStaleOnFetchAbort: true,\n allowStaleOnFetchRejection: true,\n fetchMethod,\n})\n\nexport const revs = async (repo: string, opts: GitOptions = {}) => {\n repo = String(gitScpURL(repo) ?? repo).replace(/^git\\+/, '')\n if (repo.startsWith('file://')) repo = fileURLToPath(repo)\n if (opts.noGitRevCache) {\n const result = await fetchMethod(repo, undefined, {\n context: opts,\n })\n revsCache.set(repo, result)\n return result\n }\n return await revsCache.fetch(repo, { context: opts })\n}\n"]}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { SpawnResultStderrString, SpawnResultStdoutString } from '@vltpkg/promise-spawn';
|
|
2
|
+
import { GitOptions } from './index.js';
|
|
3
|
+
export declare const spawn: (gitArgs: string[], opts?: GitOptions) => Promise<SpawnResultStderrString & SpawnResultStdoutString>;
|
|
4
|
+
//# sourceMappingURL=spawn.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spawn.d.ts","sourceRoot":"","sources":["../../src/spawn.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,uBAAuB,EACvB,uBAAuB,EACxB,MAAM,uBAAuB,CAAA;AAG9B,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAKvC,eAAO,MAAM,KAAK,YACP,MAAM,EAAE,SACX,UAAU,KACf,OAAO,CAAC,uBAAuB,GAAG,uBAAuB,CAkC3D,CAAA"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { promiseSpawn, } from '@vltpkg/promise-spawn';
|
|
2
|
+
import promiseRetry from 'promise-retry';
|
|
3
|
+
import { makeError } from './make-error.js';
|
|
4
|
+
import { opts as makeOpts } from './opts.js';
|
|
5
|
+
import { which } from './which.js';
|
|
6
|
+
export const spawn = async (gitArgs, opts = {}) => {
|
|
7
|
+
const gitPath = which(opts);
|
|
8
|
+
if (gitPath instanceof Error) {
|
|
9
|
+
throw gitPath;
|
|
10
|
+
}
|
|
11
|
+
/* c8 ignore start - undocumented option, only here for tests */
|
|
12
|
+
const args = (opts.allowReplace ||
|
|
13
|
+
gitArgs[0] === '--no-replace-objects') ?
|
|
14
|
+
gitArgs
|
|
15
|
+
: ['--no-replace-objects', ...gitArgs];
|
|
16
|
+
/* c8 ignore stop */
|
|
17
|
+
const retryOpts = {
|
|
18
|
+
retries: opts['fetch-retries'] || 3,
|
|
19
|
+
factor: opts['fetch-retry-factor'] || 2,
|
|
20
|
+
maxTimeout: opts['fetch-retry-maxtimeout'] || 60000,
|
|
21
|
+
minTimeout: opts['fetch-retry-mintimeout'] || 1000,
|
|
22
|
+
};
|
|
23
|
+
return promiseRetry(async (retryFn, num) => {
|
|
24
|
+
const result = await promiseSpawn(gitPath, args, makeOpts(opts));
|
|
25
|
+
if (result.status || result.signal) {
|
|
26
|
+
const gitError = makeError(result);
|
|
27
|
+
if (!gitError.shouldRetry(num)) {
|
|
28
|
+
throw gitError;
|
|
29
|
+
}
|
|
30
|
+
retryFn(gitError);
|
|
31
|
+
}
|
|
32
|
+
return result;
|
|
33
|
+
}, retryOpts);
|
|
34
|
+
};
|
|
35
|
+
//# sourceMappingURL=spawn.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spawn.js","sourceRoot":"","sources":["../../src/spawn.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,YAAY,GAGb,MAAM,uBAAuB,CAAA;AAC9B,OAAO,YAAY,MAAM,eAAe,CAAA;AAGxC,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAC3C,OAAO,EAAE,IAAI,IAAI,QAAQ,EAAE,MAAM,WAAW,CAAA;AAC5C,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAElC,MAAM,CAAC,MAAM,KAAK,GAAG,KAAK,EACxB,OAAiB,EACjB,OAAmB,EAAE,EACuC,EAAE;IAC9D,MAAM,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC,CAAA;IAE3B,IAAI,OAAO,YAAY,KAAK,EAAE,CAAC;QAC7B,MAAM,OAAO,CAAA;IACf,CAAC;IAED,gEAAgE;IAChE,MAAM,IAAI,GACR,CACG,IAAmC,CAAC,YAAY;QACjD,OAAO,CAAC,CAAC,CAAC,KAAK,sBAAsB,CACtC,CAAC,CAAC;QACD,OAAO;QACT,CAAC,CAAC,CAAC,sBAAsB,EAAE,GAAG,OAAO,CAAC,CAAA;IACxC,oBAAoB;IAEpB,MAAM,SAAS,GAAgB;QAC7B,OAAO,EAAE,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC;QACnC,MAAM,EAAE,IAAI,CAAC,oBAAoB,CAAC,IAAI,CAAC;QACvC,UAAU,EAAE,IAAI,CAAC,wBAAwB,CAAC,IAAI,KAAK;QACnD,UAAU,EAAE,IAAI,CAAC,wBAAwB,CAAC,IAAI,IAAI;KACnD,CAAA;IACD,OAAO,YAAY,CAAC,KAAK,EAAE,OAAO,EAAE,GAAG,EAAE,EAAE;QACzC,MAAM,MAAM,GAAG,MAAM,YAAY,CAAC,OAAO,EAAE,IAAI,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAA;QAChE,IAAI,MAAM,CAAC,MAAM,IAAI,MAAM,CAAC,MAAM,EAAE,CAAC;YACnC,MAAM,QAAQ,GAAG,SAAS,CAAC,MAAM,CAAC,CAAA;YAClC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,GAAG,CAAC,EAAE,CAAC;gBAC/B,MAAM,QAAQ,CAAA;YAChB,CAAC;YACD,OAAO,CAAC,QAAQ,CAAC,CAAA;QACnB,CAAC;QACD,OAAO,MAAM,CAAA;IACf,CAAC,EAAE,SAAS,CAAC,CAAA;AACf,CAAC,CAAA","sourcesContent":["import {\n promiseSpawn,\n SpawnResultStderrString,\n SpawnResultStdoutString,\n} from '@vltpkg/promise-spawn'\nimport promiseRetry from 'promise-retry'\nimport { WrapOptions } from 'retry'\nimport { GitOptions } from './index.js'\nimport { makeError } from './make-error.js'\nimport { opts as makeOpts } from './opts.js'\nimport { which } from './which.js'\n\nexport const spawn = async (\n gitArgs: string[],\n opts: GitOptions = {},\n): Promise<SpawnResultStderrString & SpawnResultStdoutString> => {\n const gitPath = which(opts)\n\n if (gitPath instanceof Error) {\n throw gitPath\n }\n\n /* c8 ignore start - undocumented option, only here for tests */\n const args =\n (\n (opts as { allowReplace?: boolean }).allowReplace ||\n gitArgs[0] === '--no-replace-objects'\n ) ?\n gitArgs\n : ['--no-replace-objects', ...gitArgs]\n /* c8 ignore stop */\n\n const retryOpts: WrapOptions = {\n retries: opts['fetch-retries'] || 3,\n factor: opts['fetch-retry-factor'] || 2,\n maxTimeout: opts['fetch-retry-maxtimeout'] || 60000,\n minTimeout: opts['fetch-retry-mintimeout'] || 1000,\n }\n return promiseRetry(async (retryFn, num) => {\n const result = await promiseSpawn(gitPath, args, makeOpts(opts))\n if (result.status || result.signal) {\n const gitError = makeError(result)\n if (!gitError.shouldRetry(num)) {\n throw gitError\n }\n retryFn(gitError)\n }\n return result\n }, retryOpts)\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"which.d.ts","sourceRoot":"","sources":["../../src/which.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,YAAY,CAAA;AAI5C,eAAO,MAAM,KAAK,UAAU,UAAU,mBAyBrC,CAAA"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { error } from '@vltpkg/error-cause';
|
|
2
|
+
import { whichSync } from '@vltpkg/which';
|
|
3
|
+
let gitPath = undefined;
|
|
4
|
+
export const which = (opts = {}) => {
|
|
5
|
+
if (opts.git) {
|
|
6
|
+
return opts.git;
|
|
7
|
+
}
|
|
8
|
+
let whichError = undefined;
|
|
9
|
+
if (opts.git !== false) {
|
|
10
|
+
if (!gitPath) {
|
|
11
|
+
try {
|
|
12
|
+
gitPath = whichSync('git');
|
|
13
|
+
}
|
|
14
|
+
catch (er) {
|
|
15
|
+
whichError = er;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
if (!gitPath || opts.git === false) {
|
|
20
|
+
return error('No git binary found in $PATH', {
|
|
21
|
+
code: 'ENOGIT',
|
|
22
|
+
cause: whichError,
|
|
23
|
+
}, which);
|
|
24
|
+
}
|
|
25
|
+
return gitPath;
|
|
26
|
+
};
|
|
27
|
+
//# sourceMappingURL=which.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"which.js","sourceRoot":"","sources":["../../src/which.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAA;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAGzC,IAAI,OAAO,GAAuB,SAAS,CAAA;AAE3C,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,OAAmB,EAAE,EAAE,EAAE;IAC7C,IAAI,IAAI,CAAC,GAAG,EAAE,CAAC;QACb,OAAO,IAAI,CAAC,GAAG,CAAA;IACjB,CAAC;IACD,IAAI,UAAU,GAAsB,SAAS,CAAA;IAC7C,IAAI,IAAI,CAAC,GAAG,KAAK,KAAK,EAAE,CAAC;QACvB,IAAI,CAAC,OAAO,EAAE,CAAC;YACb,IAAI,CAAC;gBACH,OAAO,GAAG,SAAS,CAAC,KAAK,CAAC,CAAA;YAC5B,CAAC;YAAC,OAAO,EAAE,EAAE,CAAC;gBACZ,UAAU,GAAG,EAAW,CAAA;YAC1B,CAAC;QACH,CAAC;IACH,CAAC;IACD,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,GAAG,KAAK,KAAK,EAAE,CAAC;QACnC,OAAO,KAAK,CACV,8BAA8B,EAC9B;YACE,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,UAAU;SAClB,EACD,KAAK,CACN,CAAA;IACH,CAAC;IACD,OAAO,OAAO,CAAA;AAChB,CAAC,CAAA","sourcesContent":["import { error } from '@vltpkg/error-cause'\nimport { whichSync } from '@vltpkg/which'\nimport { type GitOptions } from './index.js'\n\nlet gitPath: string | undefined = undefined\n\nexport const which = (opts: GitOptions = {}) => {\n if (opts.git) {\n return opts.git\n }\n let whichError: Error | undefined = undefined\n if (opts.git !== false) {\n if (!gitPath) {\n try {\n gitPath = whichSync('git')\n } catch (er) {\n whichError = er as Error\n }\n }\n }\n if (!gitPath || opts.git === false) {\n return error(\n 'No git binary found in $PATH',\n {\n code: 'ENOGIT',\n cause: whichError,\n },\n which,\n )\n }\n return gitPath\n}\n"]}
|
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vltpkg/git",
|
|
3
|
+
"description": "a util for spawning git from npm CLI contexts",
|
|
4
|
+
"version": "0.0.0-0.1730239248325",
|
|
5
|
+
"tshy": {
|
|
6
|
+
"selfLink": false,
|
|
7
|
+
"dialects": [
|
|
8
|
+
"esm"
|
|
9
|
+
],
|
|
10
|
+
"exports": {
|
|
11
|
+
"./package.json": "./package.json",
|
|
12
|
+
".": "./src/index.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@types/promise-retry": "^1.1.6",
|
|
17
|
+
"lru-cache": "^11.0.0",
|
|
18
|
+
"promise-retry": "^2.0.1",
|
|
19
|
+
"@vltpkg/error-cause": "0.0.0-0.1730239248325",
|
|
20
|
+
"@vltpkg/git-scp-url": "0.0.0-0.1730239248325",
|
|
21
|
+
"@vltpkg/pick-manifest": "0.0.0-0.1730239248325",
|
|
22
|
+
"@vltpkg/promise-spawn": "0.0.0-0.1730239248325",
|
|
23
|
+
"@vltpkg/semver": "0.0.0-0.1730239248325",
|
|
24
|
+
"@vltpkg/spec": "0.0.0-0.1730239248325",
|
|
25
|
+
"@vltpkg/which": "0.0.0-0.1730239248325"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@eslint/js": "^9.8.0",
|
|
29
|
+
"@types/eslint__js": "^8.42.3",
|
|
30
|
+
"@types/node": "^22.4.1",
|
|
31
|
+
"@types/retry": "^0.12.5",
|
|
32
|
+
"eslint": "^9.8.0",
|
|
33
|
+
"prettier": "^3.3.2",
|
|
34
|
+
"tap": "^21.0.1",
|
|
35
|
+
"tshy": "^3.0.2",
|
|
36
|
+
"typescript": "^5.5.4",
|
|
37
|
+
"typescript-eslint": "^8.0.1",
|
|
38
|
+
"@vltpkg/types": "0.0.0-0.1730239248325"
|
|
39
|
+
},
|
|
40
|
+
"license": "ISC",
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": "20 || >=22"
|
|
43
|
+
},
|
|
44
|
+
"tap": {
|
|
45
|
+
"extends": "../../tap-config.yaml"
|
|
46
|
+
},
|
|
47
|
+
"prettier": "../../.prettierrc.js",
|
|
48
|
+
"module": "./dist/esm/index.js",
|
|
49
|
+
"type": "module",
|
|
50
|
+
"exports": {
|
|
51
|
+
"./package.json": "./package.json",
|
|
52
|
+
".": {
|
|
53
|
+
"import": {
|
|
54
|
+
"types": "./dist/esm/index.d.ts",
|
|
55
|
+
"default": "./dist/esm/index.js"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"files": [
|
|
60
|
+
"dist"
|
|
61
|
+
],
|
|
62
|
+
"scripts": {
|
|
63
|
+
"format": "prettier --write . --log-level warn --ignore-path ../../.prettierignore --cache",
|
|
64
|
+
"format:check": "prettier --check . --ignore-path ../../.prettierignore --cache",
|
|
65
|
+
"lint": "eslint . --fix",
|
|
66
|
+
"lint:check": "eslint .",
|
|
67
|
+
"presnap": "tshy",
|
|
68
|
+
"snap": "tap",
|
|
69
|
+
"pretest": "tshy",
|
|
70
|
+
"test": "tap"
|
|
71
|
+
}
|
|
72
|
+
}
|