npm-update-package 0.58.4 → 0.58.7
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
CHANGED
|
@@ -12,9 +12,9 @@ CLI tool for creating pull requests to update npm packages
|
|
|
12
12
|
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
13
13
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
14
14
|
|
|
15
|
-
- [Usage](#usage)
|
|
16
15
|
- [Requirements](#requirements)
|
|
17
16
|
- [Supported platforms](#supported-platforms)
|
|
17
|
+
- [Usage](#usage)
|
|
18
18
|
- [Options](#options)
|
|
19
19
|
- [assignees](#assignees)
|
|
20
20
|
- [assigneesSampleSize](#assigneessamplesize)
|
|
@@ -46,12 +46,6 @@ CLI tool for creating pull requests to update npm packages
|
|
|
46
46
|
|
|
47
47
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
48
48
|
|
|
49
|
-
## Usage
|
|
50
|
-
|
|
51
|
-
```sh
|
|
52
|
-
npx npm-update-package --github-token $GITHUB_TOKEN
|
|
53
|
-
```
|
|
54
|
-
|
|
55
49
|
## Requirements
|
|
56
50
|
|
|
57
51
|
- Git
|
|
@@ -63,6 +57,12 @@ npx npm-update-package --github-token $GITHUB_TOKEN
|
|
|
63
57
|
- GitHub
|
|
64
58
|
- GitHub Enterprise
|
|
65
59
|
|
|
60
|
+
## Usage
|
|
61
|
+
|
|
62
|
+
```sh
|
|
63
|
+
npx npm-update-package --github-token $GITHUB_TOKEN
|
|
64
|
+
```
|
|
65
|
+
|
|
66
66
|
## Options
|
|
67
67
|
|
|
68
68
|
You can customize behavior via CLI options.
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-update-package",
|
|
3
|
-
"version": "0.58.
|
|
3
|
+
"version": "0.58.7",
|
|
4
4
|
"description": "CLI tool for creating pull requests to update npm packages",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsc --project tsconfig.build.json",
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"bin": "dist/src/bin.js",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@octokit/rest": "18.12.0",
|
|
18
|
-
"commander": "9.
|
|
18
|
+
"commander": "9.2.0",
|
|
19
19
|
"execa": "5.1.1",
|
|
20
|
-
"fp-ts": "2.11.
|
|
20
|
+
"fp-ts": "2.11.10",
|
|
21
21
|
"http-status-codes": "2.2.0",
|
|
22
22
|
"io-ts": "2.2.16",
|
|
23
23
|
"lodash": "4.14.2",
|
|
24
|
-
"log4js": "6.4.
|
|
24
|
+
"log4js": "6.4.5",
|
|
25
25
|
"mustache": "4.1.0",
|
|
26
26
|
"node-fetch": "2.6.7",
|
|
27
27
|
"npm-check-updates": "12.5.9",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@types/jest": "27.4.1",
|
|
37
37
|
"@types/lodash": "4.14.181",
|
|
38
38
|
"@types/mustache": "4.1.2",
|
|
39
|
-
"@types/node": "12.20.
|
|
39
|
+
"@types/node": "12.20.48",
|
|
40
40
|
"@types/node-fetch": "2.6.1",
|
|
41
41
|
"@types/parse-github-url": "1.0.0",
|
|
42
42
|
"@types/semver": "7.3.9",
|
|
@@ -45,12 +45,14 @@
|
|
|
45
45
|
"eslint-config-standard-with-typescript": "21.0.1",
|
|
46
46
|
"eslint-plugin-import": "2.26.0",
|
|
47
47
|
"eslint-plugin-jest": "26.1.4",
|
|
48
|
+
"eslint-plugin-lodash": "7.4.0",
|
|
48
49
|
"eslint-plugin-node": "11.1.0",
|
|
49
50
|
"eslint-plugin-promise": "6.0.0",
|
|
50
51
|
"eslint-plugin-tsdoc": "0.2.16",
|
|
52
|
+
"eslint-plugin-you-dont-need-lodash-underscore": "6.12.0",
|
|
51
53
|
"husky": "7.0.4",
|
|
52
54
|
"jest": "27.4.7",
|
|
53
|
-
"lint-staged": "12.3.
|
|
55
|
+
"lint-staged": "12.3.8",
|
|
54
56
|
"npm-run-all": "4.1.5",
|
|
55
57
|
"rimraf": "3.0.2",
|
|
56
58
|
"ts-jest": "27.1.4",
|
|
@@ -5,7 +5,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.AssigneesAdder = void 0;
|
|
7
7
|
const shuffle_1 = __importDefault(require("lodash/shuffle"));
|
|
8
|
-
// TODO: Add test
|
|
9
8
|
class AssigneesAdder {
|
|
10
9
|
constructor({ github, gitRepo }) {
|
|
11
10
|
this.github = github;
|
|
@@ -5,7 +5,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.ReviewersAdder = void 0;
|
|
7
7
|
const shuffle_1 = __importDefault(require("lodash/shuffle"));
|
|
8
|
-
// TODO: Add test
|
|
9
8
|
class ReviewersAdder {
|
|
10
9
|
constructor({ github, gitRepo }) {
|
|
11
10
|
this.github = github;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-update-package",
|
|
3
|
-
"version": "0.58.
|
|
3
|
+
"version": "0.58.7",
|
|
4
4
|
"description": "CLI tool for creating pull requests to update npm packages",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsc --project tsconfig.build.json",
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"bin": "dist/src/bin.js",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@octokit/rest": "18.12.0",
|
|
18
|
-
"commander": "9.
|
|
18
|
+
"commander": "9.2.0",
|
|
19
19
|
"execa": "5.1.1",
|
|
20
|
-
"fp-ts": "2.11.
|
|
20
|
+
"fp-ts": "2.11.10",
|
|
21
21
|
"http-status-codes": "2.2.0",
|
|
22
22
|
"io-ts": "2.2.16",
|
|
23
23
|
"lodash": "4.14.2",
|
|
24
|
-
"log4js": "6.4.
|
|
24
|
+
"log4js": "6.4.5",
|
|
25
25
|
"mustache": "4.1.0",
|
|
26
26
|
"node-fetch": "2.6.7",
|
|
27
27
|
"npm-check-updates": "12.5.9",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@types/jest": "27.4.1",
|
|
37
37
|
"@types/lodash": "4.14.181",
|
|
38
38
|
"@types/mustache": "4.1.2",
|
|
39
|
-
"@types/node": "12.20.
|
|
39
|
+
"@types/node": "12.20.48",
|
|
40
40
|
"@types/node-fetch": "2.6.1",
|
|
41
41
|
"@types/parse-github-url": "1.0.0",
|
|
42
42
|
"@types/semver": "7.3.9",
|
|
@@ -45,12 +45,14 @@
|
|
|
45
45
|
"eslint-config-standard-with-typescript": "21.0.1",
|
|
46
46
|
"eslint-plugin-import": "2.26.0",
|
|
47
47
|
"eslint-plugin-jest": "26.1.4",
|
|
48
|
+
"eslint-plugin-lodash": "7.4.0",
|
|
48
49
|
"eslint-plugin-node": "11.1.0",
|
|
49
50
|
"eslint-plugin-promise": "6.0.0",
|
|
50
51
|
"eslint-plugin-tsdoc": "0.2.16",
|
|
52
|
+
"eslint-plugin-you-dont-need-lodash-underscore": "6.12.0",
|
|
51
53
|
"husky": "7.0.4",
|
|
52
54
|
"jest": "27.4.7",
|
|
53
|
-
"lint-staged": "12.3.
|
|
55
|
+
"lint-staged": "12.3.8",
|
|
54
56
|
"npm-run-all": "4.1.5",
|
|
55
57
|
"rimraf": "3.0.2",
|
|
56
58
|
"ts-jest": "27.1.4",
|