repo-util 2.0.15 → 2.0.17
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/README.md +10 -1
- package/package.json +11 -7
package/README.md
CHANGED
|
@@ -4,18 +4,27 @@
|
|
|
4
4
|
[](https://npmjs.org/package/repo-util)
|
|
5
5
|
[](https://github.com/arlac77/repo-util/issues)
|
|
6
6
|
[](https://actions-badge.atrox.dev/arlac77/repo-util/goto)
|
|
7
|
+
[](https://github.com/prettier/prettier)
|
|
8
|
+
[](http://commitizen.github.io/cz-cli/)
|
|
9
|
+
[](https://snyk.io/test/github/arlac77/repo-util)
|
|
7
10
|
[](https://coveralls.io/github/arlac77/repo-util)
|
|
11
|
+
|
|
8
12
|
# repo-util
|
|
9
|
-
operate on remote repositories
|
|
10
13
|
|
|
14
|
+
operate on remote repositories
|
|
11
15
|
|
|
12
16
|
# set description
|
|
17
|
+
|
|
13
18
|
```sh
|
|
14
19
|
repo-util -Ddescription="Configuration only" repository '*/*config'
|
|
15
20
|
```
|
|
16
21
|
|
|
17
22
|
# API
|
|
18
23
|
|
|
24
|
+
<!-- Generated by documentation.js. Update this documentation by updating the source code. -->
|
|
25
|
+
|
|
26
|
+
## Table of Contents
|
|
27
|
+
|
|
19
28
|
# install
|
|
20
29
|
|
|
21
30
|
```shell
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repo-util",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.17",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -19,24 +19,28 @@
|
|
|
19
19
|
"scripts": {
|
|
20
20
|
"test": "npm run test:ava",
|
|
21
21
|
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
|
|
22
|
-
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp"
|
|
22
|
+
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
|
|
23
|
+
"docs": "documentation readme --section=API ./src/**/*.mjs",
|
|
24
|
+
"lint": "npm run lint:docs",
|
|
25
|
+
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
23
26
|
},
|
|
24
27
|
"dependencies": {
|
|
25
28
|
"aggregation-repository-provider": "^6.0.6",
|
|
26
|
-
"bitbucket-repository-provider": "^6.0.
|
|
29
|
+
"bitbucket-repository-provider": "^6.0.8",
|
|
27
30
|
"commander": "^12.0.0",
|
|
28
31
|
"etag-cache-leveldb": "^2.0.3",
|
|
29
|
-
"gitea-repository-provider": "^4.0.
|
|
30
|
-
"github-repository-provider": "^8.0.
|
|
32
|
+
"gitea-repository-provider": "^4.0.10",
|
|
33
|
+
"github-repository-provider": "^8.0.37",
|
|
31
34
|
"leveldown": "^6.1.1",
|
|
32
35
|
"levelup": "^5.1.1",
|
|
33
|
-
"repository-provider-cli-support": "^2.
|
|
36
|
+
"repository-provider-cli-support": "^2.1.0"
|
|
34
37
|
},
|
|
35
38
|
"devDependencies": {
|
|
36
39
|
"ava": "^6.1.1",
|
|
37
40
|
"c8": "^9.1.0",
|
|
41
|
+
"documentation": "^14.0.3",
|
|
38
42
|
"execa": "^8.0.1",
|
|
39
|
-
"semantic-release": "^23.0.
|
|
43
|
+
"semantic-release": "^23.0.2"
|
|
40
44
|
},
|
|
41
45
|
"engines": {
|
|
42
46
|
"node": ">=20.11.0"
|