npm-update-package 1.5.10 → 1.5.12

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
@@ -68,6 +68,12 @@ The simplest use of npm-update-package is just run the following command:
68
68
  npx npm-update-package --github-token <github-token>
69
69
  ```
70
70
 
71
+ Alternatively, you can use a specific version as follows:
72
+
73
+ ```sh
74
+ npx npm-update-package@1 --github-token <github-token>
75
+ ```
76
+
71
77
  ## Options
72
78
 
73
79
  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": "1.5.10",
3
+ "version": "1.5.12",
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,9 +15,9 @@
15
15
  "node": ">=14"
16
16
  },
17
17
  "dependencies": {
18
- "@octokit/rest": "19.0.5",
18
+ "@octokit/rest": "19.0.7",
19
19
  "array-shuffle": "2.0.0",
20
- "commander": "9.4.1",
20
+ "commander": "9.5.0",
21
21
  "execa": "5.1.1",
22
22
  "fp-ts": "2.13.1",
23
23
  "http-status-codes": "2.2.0",
@@ -31,7 +31,7 @@
31
31
  "type-guards": "0.15.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@eslint-recommended/eslint-config-typescript": "3.0.0",
34
+ "@eslint-recommended/eslint-config-typescript": "4.0.0",
35
35
  "@npm-update-package/eslint-config-typescript": "1.0.0",
36
36
  "@tsconfig/node14": "1.0.3",
37
37
  "@types/mustache": "4.2.2",
@@ -39,24 +39,24 @@
39
39
  "@types/node-fetch": "2.6.2",
40
40
  "@types/parse-github-url": "1.0.0",
41
41
  "@types/semver": "7.3.13",
42
- "@typescript-eslint/eslint-plugin": "5.47.1",
43
- "eslint": "8.31.0",
44
- "eslint-config-standard-with-typescript": "24.0.0",
42
+ "@typescript-eslint/eslint-plugin": "5.50.0",
43
+ "eslint": "8.32.0",
44
+ "eslint-config-standard-with-typescript": "26.0.0",
45
45
  "eslint-plugin-eslint-comments": "3.2.0",
46
- "eslint-plugin-import": "2.26.0",
46
+ "eslint-plugin-import": "2.27.5",
47
47
  "eslint-plugin-import-newlines": "1.3.0",
48
- "eslint-plugin-jest": "27.2.0",
49
- "eslint-plugin-jsdoc": "39.6.4",
48
+ "eslint-plugin-jest": "27.2.1",
49
+ "eslint-plugin-jsdoc": "39.8.0",
50
50
  "eslint-plugin-n": "15.6.0",
51
51
  "eslint-plugin-promise": "6.1.1",
52
52
  "eslint-plugin-tsdoc": "0.2.17",
53
53
  "eslint-plugin-unicorn": "45.0.2",
54
54
  "jest": "29.3.1",
55
55
  "npm-run-all": "4.1.5",
56
- "rimraf": "3.0.2",
57
- "ts-jest": "29.0.3",
56
+ "rimraf": "4.1.2",
57
+ "ts-jest": "29.0.5",
58
58
  "ts-node": "10.9.1",
59
- "typescript": "4.9.4",
59
+ "typescript": "4.9.5",
60
60
  "utility-types": "3.10.0"
61
61
  },
62
62
  "repository": {
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.sleep = void 0;
4
4
  const sleep = async (ms) => {
5
- return await new Promise(resolve => setTimeout(resolve, ms));
5
+ await new Promise(resolve => setTimeout(resolve, ms));
6
6
  };
7
7
  exports.sleep = sleep;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-update-package",
3
- "version": "1.5.10",
3
+ "version": "1.5.12",
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,9 +15,9 @@
15
15
  "node": ">=14"
16
16
  },
17
17
  "dependencies": {
18
- "@octokit/rest": "19.0.5",
18
+ "@octokit/rest": "19.0.7",
19
19
  "array-shuffle": "2.0.0",
20
- "commander": "9.4.1",
20
+ "commander": "9.5.0",
21
21
  "execa": "5.1.1",
22
22
  "fp-ts": "2.13.1",
23
23
  "http-status-codes": "2.2.0",
@@ -31,7 +31,7 @@
31
31
  "type-guards": "0.15.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@eslint-recommended/eslint-config-typescript": "3.0.0",
34
+ "@eslint-recommended/eslint-config-typescript": "4.0.0",
35
35
  "@npm-update-package/eslint-config-typescript": "1.0.0",
36
36
  "@tsconfig/node14": "1.0.3",
37
37
  "@types/mustache": "4.2.2",
@@ -39,24 +39,24 @@
39
39
  "@types/node-fetch": "2.6.2",
40
40
  "@types/parse-github-url": "1.0.0",
41
41
  "@types/semver": "7.3.13",
42
- "@typescript-eslint/eslint-plugin": "5.47.1",
43
- "eslint": "8.31.0",
44
- "eslint-config-standard-with-typescript": "24.0.0",
42
+ "@typescript-eslint/eslint-plugin": "5.50.0",
43
+ "eslint": "8.32.0",
44
+ "eslint-config-standard-with-typescript": "26.0.0",
45
45
  "eslint-plugin-eslint-comments": "3.2.0",
46
- "eslint-plugin-import": "2.26.0",
46
+ "eslint-plugin-import": "2.27.5",
47
47
  "eslint-plugin-import-newlines": "1.3.0",
48
- "eslint-plugin-jest": "27.2.0",
49
- "eslint-plugin-jsdoc": "39.6.4",
48
+ "eslint-plugin-jest": "27.2.1",
49
+ "eslint-plugin-jsdoc": "39.8.0",
50
50
  "eslint-plugin-n": "15.6.0",
51
51
  "eslint-plugin-promise": "6.1.1",
52
52
  "eslint-plugin-tsdoc": "0.2.17",
53
53
  "eslint-plugin-unicorn": "45.0.2",
54
54
  "jest": "29.3.1",
55
55
  "npm-run-all": "4.1.5",
56
- "rimraf": "3.0.2",
57
- "ts-jest": "29.0.3",
56
+ "rimraf": "4.1.2",
57
+ "ts-jest": "29.0.5",
58
58
  "ts-node": "10.9.1",
59
- "typescript": "4.9.4",
59
+ "typescript": "4.9.5",
60
60
  "utility-types": "3.10.0"
61
61
  },
62
62
  "repository": {