@rpcbase/server 0.264.0 → 0.265.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/server",
3
- "version": "0.264.0",
3
+ "version": "0.265.0",
4
4
  "license": "SSPL-1.0",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -6,6 +6,8 @@ const validator = require("validator")
6
6
  const {createClient} = require("redis")
7
7
  const RedisStore = require("connect-redis").default
8
8
 
9
+ const is_docker = require("@rpcbase/std/is_docker")
10
+
9
11
 
10
12
  const {SESSION_STORE_PORT, APP_DOMAIN} = process.env
11
13
  assert(SESSION_STORE_PORT, "SESSION_STORE_PORT is undefined")