@swagger-api/apidom-parser-adapter-json 1.10.0 → 1.10.1
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": "@swagger-api/apidom-parser-adapter-json",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.1",
|
|
4
4
|
"description": "Parser adapter for parsing JSON documents into base namespace.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"license": "Apache-2.0",
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@babel/runtime-corejs3": "^7.26.10",
|
|
59
|
-
"@swagger-api/apidom-ast": "^1.10.
|
|
60
|
-
"@swagger-api/apidom-core": "^1.10.
|
|
61
|
-
"@swagger-api/apidom-error": "^1.10.
|
|
59
|
+
"@swagger-api/apidom-ast": "^1.10.1",
|
|
60
|
+
"@swagger-api/apidom-core": "^1.10.1",
|
|
61
|
+
"@swagger-api/apidom-error": "^1.10.1",
|
|
62
62
|
"@types/ramda": "~0.30.0",
|
|
63
63
|
"ramda": "~0.30.0",
|
|
64
64
|
"ramda-adjunct": "^5.0.0",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"README.md",
|
|
81
81
|
"CHANGELOG.md"
|
|
82
82
|
],
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "156d40b3dc9f84a5e6bc77b27717a06dd0e2090b"
|
|
84
84
|
}
|
|
@@ -12,7 +12,7 @@ var _treeSitterJson = _interopRequireDefault(require("../../wasm/tree-sitter-jso
|
|
|
12
12
|
let parser = null;
|
|
13
13
|
let parserInitLock = null;
|
|
14
14
|
const activeTrees = new Set();
|
|
15
|
-
const MAX_ACTIVE_TREES =
|
|
15
|
+
const MAX_ACTIVE_TREES = 10;
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* Lexical Analysis of source string using WebTreeSitter.
|
|
@@ -7,7 +7,7 @@ import treeSitterJson from '../../wasm/tree-sitter-json.wasm';
|
|
|
7
7
|
let parser = null;
|
|
8
8
|
let parserInitLock = null;
|
|
9
9
|
const activeTrees = new Set();
|
|
10
|
-
const MAX_ACTIVE_TREES =
|
|
10
|
+
const MAX_ACTIVE_TREES = 10;
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* Lexical Analysis of source string using WebTreeSitter.
|