stentor-conditional 1.57.2 → 1.57.3

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/README.md +3 -1
  2. package/package.json +2 -3
package/README.md CHANGED
@@ -6,4 +6,6 @@ The conditional determiner will take an array of conditionals and evaluate each
6
6
 
7
7
  ### VM
8
8
 
9
- By default, it uses the built-in Node VM but if you install vm2 or isolated-vm, it will then prefer that as your VM environment.
9
+ By default, it uses the built-in Node VM but if you install [vm2](https://github.com/patriksimek/vm2) or [isolated-vm](https://github.com/laverdet/isolated-vm), it will then prefer either of those as your VM environment.
10
+
11
+ Note: `isolated-vm` is not in the `optionalDependencies` of the package.json as it causes a lot of noisy output during the installation process since it requires python.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.57.2",
7
+ "version": "1.57.3",
8
8
  "description": "Conditionals for 📣 stentor",
9
9
  "types": "lib/index",
10
10
  "typings": "lib/index",
@@ -29,7 +29,6 @@
29
29
  "stentor-logger": "1.57.2"
30
30
  },
31
31
  "optionalDependencies": {
32
- "isolated-vm": "4.4.2",
33
32
  "vm2": "3.9.11"
34
33
  },
35
34
  "peerDependencies": {
@@ -40,5 +39,5 @@
40
39
  "clean": "rm -rf ./lib/*",
41
40
  "test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
42
41
  },
43
- "gitHead": "9b1d170c6b03f55f2c5eab1204b3a3e7ad6b4e6c"
42
+ "gitHead": "79391acba542fd7c8ad1311f5d7c847828a7b42b"
44
43
  }