npm-update-package 0.13.0 → 0.14.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/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.13.0',
6
+ version: '0.14.0',
7
7
  web: 'https://github.com/npm-update-package/npm-update-package'
8
8
  };
package/dist/main.js CHANGED
@@ -11,7 +11,10 @@ const processors_1 = require("./processors");
11
11
  const terminal_1 = require("./terminal");
12
12
  // TODO: add test
13
13
  const main = async ({ options, logger }) => {
14
- logger.debug(`options=${JSON.stringify(options)}`);
14
+ logger.debug(`options=${JSON.stringify({
15
+ ...options,
16
+ githubToken: options.githubToken !== '' ? '***' : ''
17
+ })}`);
15
18
  const packageJsonParser = new package_json_1.PackageJsonParser(logger);
16
19
  const packageJsonReader = new package_json_1.PackageJsonReader({
17
20
  packageJsonParser,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-update-package",
3
- "version": "0.13.0",
3
+ "version": "0.14.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",