pawa-ssr 1.0.7 → 1.0.8

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/utils.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pawa-ssr",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "pawajs ssr libary",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/utils.js CHANGED
@@ -49,7 +49,7 @@ export const sanitizeTemplate = (temp) => {
49
49
  export const evaluateExpr = (expr, context = {}) => {
50
50
  try {
51
51
  const vm = new VM({
52
- timeout: 50,
52
+ timeout: 150,
53
53
  sandbox: { ...context },
54
54
  require:false
55
55
  });