@rpcbase/cli 0.44.0 → 0.45.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.44.0",
3
+ "version": "0.45.0",
4
4
  "license": "SSPL-1.0",
5
5
  "bin": {
6
6
  "rb": "./bin.js"
@@ -77,6 +77,10 @@ const verify_env = async(root_dir) => {
77
77
  })
78
78
  })
79
79
 
80
+ if (parsed_env.DATABASE_NAME) {
81
+ throw new Error("DATABASE_NAME must not be defined in env, it has been replaced by RB_APP_NAME")
82
+ }
83
+
80
84
  return result_errors
81
85
  }
82
86