trickle-observe 0.2.99 → 0.2.100

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.
@@ -53,7 +53,7 @@ const path = __importStar(require("path"));
53
53
  let queriesFile = null;
54
54
  let debugMode = false;
55
55
  const MAX_QUERY_LENGTH = 500;
56
- const MAX_QUERIES = 100;
56
+ const MAX_QUERIES = 500;
57
57
  let queryCount = 0;
58
58
  function getQueriesFile() {
59
59
  if (queriesFile)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trickle-observe",
3
- "version": "0.2.99",
3
+ "version": "0.2.100",
4
4
  "description": "Runtime type observability for JavaScript applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -26,7 +26,7 @@ interface QueryRecord {
26
26
  let queriesFile: string | null = null;
27
27
  let debugMode = false;
28
28
  const MAX_QUERY_LENGTH = 500;
29
- const MAX_QUERIES = 100;
29
+ const MAX_QUERIES = 500;
30
30
  let queryCount = 0;
31
31
 
32
32
  function getQueriesFile(): string {