npm-update-package 0.29.0 → 0.30.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 +1 -0
- package/dist/app.js +1 -1
- package/dist/logger/LogLevel.js +1 -0
- package/dist/options/Options.js +2 -1
- package/dist/options/cliOptions.js +2 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -49,6 +49,7 @@ Log level to show
|
|
|
49
49
|
- `warn`: Output fatal/error/warn logs.
|
|
50
50
|
- `info`: Output fatal/error/warn/info logs.
|
|
51
51
|
- `debug`: Output fatal/error/warn/info/debug logs.
|
|
52
|
+
- `trace`: Output fatal/error/warn/info/debug/trace logs.
|
|
52
53
|
- default: `info`
|
|
53
54
|
|
|
54
55
|
### `--package-manager`
|
package/dist/app.js
CHANGED
package/dist/logger/LogLevel.js
CHANGED
package/dist/options/Options.js
CHANGED
|
@@ -14,7 +14,8 @@ const Options = (0, io_ts_1.intersection)([
|
|
|
14
14
|
(0, io_ts_1.literal)(logger_1.LogLevel.Error),
|
|
15
15
|
(0, io_ts_1.literal)(logger_1.LogLevel.Warn),
|
|
16
16
|
(0, io_ts_1.literal)(logger_1.LogLevel.Info),
|
|
17
|
-
(0, io_ts_1.literal)(logger_1.LogLevel.Debug)
|
|
17
|
+
(0, io_ts_1.literal)(logger_1.LogLevel.Debug),
|
|
18
|
+
(0, io_ts_1.literal)(logger_1.LogLevel.Trace)
|
|
18
19
|
]),
|
|
19
20
|
packageManager: (0, io_ts_1.union)([
|
|
20
21
|
(0, io_ts_1.literal)(package_manager_1.PackageManagerName.Npm),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-update-package",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.30.0",
|
|
4
4
|
"description": "CLI tool for creating pull requests to update npm packages",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsc --project tsconfig.build.json",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@types/node": "12.20.40",
|
|
39
39
|
"@types/parse-github-url": "1.0.0",
|
|
40
40
|
"@types/semver": "7.3.9",
|
|
41
|
-
"@typescript-eslint/eslint-plugin": "5.10.
|
|
41
|
+
"@typescript-eslint/eslint-plugin": "5.10.1",
|
|
42
42
|
"eslint": "8.7.0",
|
|
43
43
|
"eslint-config-standard-with-typescript": "21.0.1",
|
|
44
44
|
"eslint-plugin-import": "2.25.4",
|