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 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
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.app = void 0;
4
4
  exports.app = {
5
5
  name: 'npm-update-package',
6
- version: '0.29.0',
6
+ version: '0.30.0',
7
7
  web: 'https://github.com/npm-update-package/npm-update-package'
8
8
  };
@@ -7,6 +7,7 @@ exports.LogLevel = {
7
7
  Fatal: 'fatal',
8
8
  Info: 'info',
9
9
  Off: 'off',
10
+ Trace: 'trace',
10
11
  Warn: 'warn'
11
12
  };
12
13
  const logLevels = Object.values(exports.LogLevel);
@@ -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),
@@ -29,7 +29,8 @@ exports.cliOptions = [
29
29
  logger_1.LogLevel.Error,
30
30
  logger_1.LogLevel.Warn,
31
31
  logger_1.LogLevel.Info,
32
- logger_1.LogLevel.Debug
32
+ logger_1.LogLevel.Debug,
33
+ logger_1.LogLevel.Trace
33
34
  ],
34
35
  default: logger_1.LogLevel.Info
35
36
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-update-package",
3
- "version": "0.29.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.0",
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",