capacitor-standard-version 1.0.4 → 1.0.5

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
@@ -4,4 +4,4 @@ Default config for standard-version for capacitor app
4
4
 
5
5
  use it at builtin replacement of https://www.npmjs.com/package/standard-version
6
6
 
7
- All config are supported
7
+ All config from .versionrc, .versionrc.json or .versionrc.js are supported
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-standard-version",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Default standard-version config for capacitor app",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/bin/index.ts CHANGED
@@ -36,7 +36,6 @@ const baseConfig = {
36
36
 
37
37
  async function run() {
38
38
  try {
39
- console.log('command', command)
40
39
  // merge base config with user config
41
40
  const finalConfig = merge(baseConfig, command.argv);
42
41
  await standardVersion(finalConfig);