crabatool 1.0.353 → 1.0.355

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/lib/handler.js CHANGED
@@ -40,7 +40,7 @@ class Handler {
40
40
  return next();
41
41
  }
42
42
 
43
- req.session.t = (new Date()).getTime(); // 防止session过期
43
+ //req.session.t = (new Date()).getTime(); // 防止session过期
44
44
  try {
45
45
  return await fun.apply(targetApi, [req, res]);
46
46
  } catch (ex) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crabatool",
3
- "version": "1.0.353",
3
+ "version": "1.0.355",
4
4
  "description": "crabatool",
5
5
  "main": "index.js",
6
6
  "bin": {
package/tool/start.js CHANGED
@@ -101,6 +101,7 @@ class Start {
101
101
  { name: '-checkgspx', type: 'boolean' },
102
102
  { name: '-checkutf8', type: 'boolean' },
103
103
  { name: '-clearCache', type: 'boolean' },
104
+ { name: '-noOpen', type: 'boolean' },
104
105
 
105
106
  { name: '-proxy', type: 'json' },
106
107
  { name: '-proxySrc', type: '' }