npm-update-package 0.26.1 → 0.27.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/LICENSE +1 -1
- package/README.md +4 -3
- package/dist/app.js +1 -1
- package/dist/logger/LogLevel.js +1 -0
- package/dist/options/Options.js +1 -1
- package/dist/options/cliOptions.js +1 -0
- package/package.json +1 -1
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -44,9 +44,10 @@ Log level to show
|
|
|
44
44
|
- required: false
|
|
45
45
|
- allowed values
|
|
46
46
|
- `off`: Do not output any logs.
|
|
47
|
-
- `
|
|
48
|
-
- `
|
|
49
|
-
- `
|
|
47
|
+
- `fatal`: Output fatal logs.
|
|
48
|
+
- `error`: Output fatal/error logs.
|
|
49
|
+
- `info`: Output fatal/error/info logs.
|
|
50
|
+
- `debug`: Output fatal/error/info/debug logs.
|
|
50
51
|
- default: `info`
|
|
51
52
|
|
|
52
53
|
### `--package-manager`
|
package/dist/app.js
CHANGED
package/dist/logger/LogLevel.js
CHANGED
package/dist/options/Options.js
CHANGED
|
@@ -8,7 +8,7 @@ const Options = (0, io_ts_1.intersection)([
|
|
|
8
8
|
(0, io_ts_1.type)({
|
|
9
9
|
commitMessage: io_ts_1.string,
|
|
10
10
|
githubToken: io_ts_1.string,
|
|
11
|
-
logLevel: (0, io_ts_1.union)([(0, io_ts_1.literal)(logger_1.LogLevel.Off), (0, io_ts_1.literal)(logger_1.LogLevel.Error), (0, io_ts_1.literal)(logger_1.LogLevel.Info), (0, io_ts_1.literal)(logger_1.LogLevel.Debug)]),
|
|
11
|
+
logLevel: (0, io_ts_1.union)([(0, io_ts_1.literal)(logger_1.LogLevel.Off), (0, io_ts_1.literal)(logger_1.LogLevel.Fatal), (0, io_ts_1.literal)(logger_1.LogLevel.Error), (0, io_ts_1.literal)(logger_1.LogLevel.Info), (0, io_ts_1.literal)(logger_1.LogLevel.Debug)]),
|
|
12
12
|
packageManager: (0, io_ts_1.union)([(0, io_ts_1.literal)(package_manager_1.PackageManagerName.Npm), (0, io_ts_1.literal)(package_manager_1.PackageManagerName.Yarn)]),
|
|
13
13
|
pullRequestTitle: io_ts_1.string
|
|
14
14
|
}),
|