@rpcbase/cli 0.48.0 → 0.49.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/cli",
3
- "version": "0.48.0",
3
+ "version": "0.49.0",
4
4
  "license": "SSPL-1.0",
5
5
  "bin": {
6
6
  "rb": "./bin.js"
@@ -105,6 +105,9 @@ const increment_pkg = async(args) => {
105
105
  if (semver.lt(local_version, bumped_version)) {
106
106
  local_pack.version = bumped_version,
107
107
  fs.writeFileSync(local_pack_path, JSON.stringify(local_pack, null, 2) + "\n")
108
+
109
+ console.log("bumped", local_pack.name, "to", bumped_version)
110
+
108
111
  execSync(`git add ${local_pack_path}`)
109
112
  }
110
113
 
@@ -118,7 +121,7 @@ const increment_pkg = async(args) => {
118
121
  //
119
122
  // // if (next_version && semver.neq(remote_version, next_version)) {
120
123
  // if (next_version && semver.neq(local_version, next_version)) {
121
- // console.log("bumped", local_pack.name, "to", next_version)
124
+ //
122
125
  //
123
126
  // local_pack.version = next_version
124
127
  //