socket-function 0.144.0 → 0.145.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": "socket-function",
3
- "version": "0.144.0",
3
+ "version": "0.145.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "dependencies": {
@@ -255,7 +255,7 @@ class RequireControllerBase {
255
255
  originalId: module.id,
256
256
  filename: module.filename,
257
257
  // NOTE: Due to recursive sets of allowclient, it is very possible for allowclient && serveronly to be set.
258
- allowclient: module.allowclient && !module.serveronly,
258
+ allowclient: getIsAllowClient(module),
259
259
  serveronly: module.serveronly,
260
260
  requests: Object.create(null),
261
261
  seqNum: module.requireControllerSeqNum,