npm-update-package 0.14.0 → 0.15.0
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 +15 -7
- package/dist/app.js +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ Template strings such as `--branch-name` can embed variables like `{{packageName
|
|
|
53
53
|
|
|
54
54
|
Branch name template
|
|
55
55
|
|
|
56
|
-
-
|
|
56
|
+
- type: string
|
|
57
57
|
- variables:
|
|
58
58
|
- `currentVersion`
|
|
59
59
|
- `newVersion`
|
|
@@ -66,7 +66,7 @@ Branch name template
|
|
|
66
66
|
|
|
67
67
|
Commit message template
|
|
68
68
|
|
|
69
|
-
-
|
|
69
|
+
- type: string
|
|
70
70
|
- variables:
|
|
71
71
|
- `currentVersion`
|
|
72
72
|
- `newVersion`
|
|
@@ -79,14 +79,15 @@ Commit message template
|
|
|
79
79
|
|
|
80
80
|
GitHub token
|
|
81
81
|
|
|
82
|
-
-
|
|
82
|
+
- type: string
|
|
83
83
|
- required: true
|
|
84
84
|
|
|
85
85
|
### `--log-level`
|
|
86
86
|
|
|
87
87
|
Log level to show
|
|
88
88
|
|
|
89
|
-
-
|
|
89
|
+
- type: string
|
|
90
|
+
- allowed values:
|
|
90
91
|
- `error`
|
|
91
92
|
- `info`
|
|
92
93
|
- `debug`
|
|
@@ -97,7 +98,8 @@ Log level to show
|
|
|
97
98
|
|
|
98
99
|
Package manager of your project
|
|
99
100
|
|
|
100
|
-
-
|
|
101
|
+
- type: string
|
|
102
|
+
- allowed values:
|
|
101
103
|
- `npm`
|
|
102
104
|
- `yarn`
|
|
103
105
|
- required: false
|
|
@@ -107,7 +109,7 @@ Package manager of your project
|
|
|
107
109
|
|
|
108
110
|
Pull request body template
|
|
109
111
|
|
|
110
|
-
-
|
|
112
|
+
- type: string
|
|
111
113
|
- variables:
|
|
112
114
|
- `appName`
|
|
113
115
|
- `appVersion`
|
|
@@ -134,7 +136,7 @@ This PR has been generated by [{{{appName}}}]({{{appWeb}}}) v{{appVersion}}
|
|
|
134
136
|
|
|
135
137
|
Pull request title template
|
|
136
138
|
|
|
137
|
-
-
|
|
139
|
+
- type: string
|
|
138
140
|
- variables:
|
|
139
141
|
- `currentVersion`
|
|
140
142
|
- `newVersion`
|
|
@@ -142,3 +144,9 @@ Pull request title template
|
|
|
142
144
|
- `updateType`
|
|
143
145
|
- required: false
|
|
144
146
|
- default: `chore(deps): {{updateType}} update {{{packageName}}} to v{{newVersion}}`
|
|
147
|
+
|
|
148
|
+
## FAQ
|
|
149
|
+
|
|
150
|
+
### Conflicts has occurred in PR. What should I do?
|
|
151
|
+
|
|
152
|
+
If conflicts has occurred in PR, close it and run npm-update-package again.
|
package/dist/app.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-update-package",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "CLI tool for creating pull request to update npm packages",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsc --project tsconfig.build.json",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"io-ts": "2.2.16",
|
|
25
25
|
"log4js": "6.3.0",
|
|
26
26
|
"mustache": "4.1.0",
|
|
27
|
-
"npm-check-updates": "12.0.
|
|
27
|
+
"npm-check-updates": "12.0.5",
|
|
28
28
|
"parse-github-url": "1.0.2",
|
|
29
29
|
"semver": "7.3.5"
|
|
30
30
|
},
|
|
@@ -36,22 +36,22 @@
|
|
|
36
36
|
"@types/node": "12.20.15",
|
|
37
37
|
"@types/parse-github-url": "1.0.0",
|
|
38
38
|
"@types/semver": "7.3.9",
|
|
39
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
40
|
-
"eslint": "8.
|
|
39
|
+
"@typescript-eslint/eslint-plugin": "5.8.0",
|
|
40
|
+
"eslint": "8.5.0",
|
|
41
41
|
"eslint-config-standard-with-typescript": "21.0.1",
|
|
42
42
|
"eslint-plugin-import": "2.25.3",
|
|
43
43
|
"eslint-plugin-jest": "25.3.0",
|
|
44
44
|
"eslint-plugin-node": "11.1.0",
|
|
45
|
-
"eslint-plugin-promise": "
|
|
45
|
+
"eslint-plugin-promise": "6.0.0",
|
|
46
46
|
"eslint-plugin-tsdoc": "0.2.14",
|
|
47
47
|
"husky": "7.0.4",
|
|
48
48
|
"jest": "27.0.6",
|
|
49
|
-
"lint-staged": "12.1.
|
|
49
|
+
"lint-staged": "12.1.4",
|
|
50
50
|
"npm-run-all": "4.1.5",
|
|
51
51
|
"rimraf": "3.0.2",
|
|
52
|
-
"ts-jest": "27.1.
|
|
52
|
+
"ts-jest": "27.1.2",
|
|
53
53
|
"ts-node": "10.4.0",
|
|
54
|
-
"typescript": "4.5.
|
|
54
|
+
"typescript": "4.5.4",
|
|
55
55
|
"utility-types": "3.10.0"
|
|
56
56
|
},
|
|
57
57
|
"repository": {
|