@speclynx/apidom-reference 2.10.0 → 2.10.2
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.10.2](https://github.com/speclynx/apidom/compare/v2.10.1...v2.10.2) (2026-02-08)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **reference:** pin broken arazzo runtime parser to fix version ([f9db9b0](https://github.com/speclynx/apidom/commit/f9db9b020b3753703703acea67629f020a4bc3de))
|
|
11
|
+
|
|
12
|
+
## [2.10.1](https://github.com/speclynx/apidom/compare/v2.10.0...v2.10.1) (2026-02-08)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @speclynx/apidom-reference
|
|
15
|
+
|
|
6
16
|
# [2.10.0](https://github.com/speclynx/apidom/compare/v2.9.0...v2.10.0) (2026-02-08)
|
|
7
17
|
|
|
8
18
|
### Features
|
|
@@ -91440,7 +91440,8 @@ const analyze = async source => {
|
|
|
91440
91440
|
if (parser === null && parserInitLock === null) {
|
|
91441
91441
|
// acquire lock
|
|
91442
91442
|
parserInitLock = web_tree_sitter__WEBPACK_IMPORTED_MODULE_0__.Parser.init({
|
|
91443
|
-
wasmBinary: treeSitter
|
|
91443
|
+
wasmBinary: treeSitter,
|
|
91444
|
+
locateFile: scriptName => scriptName
|
|
91444
91445
|
}).then(() => web_tree_sitter__WEBPACK_IMPORTED_MODULE_0__.Language.load(treeSitterJson)).then(jsonLanguage => {
|
|
91445
91446
|
const parserInstance = new web_tree_sitter__WEBPACK_IMPORTED_MODULE_0__.Parser();
|
|
91446
91447
|
parserInstance.setLanguage(jsonLanguage);
|
|
@@ -92393,7 +92394,8 @@ const analyze = async source => {
|
|
|
92393
92394
|
if (parser === null && parserInitLock === null) {
|
|
92394
92395
|
// acquire lock
|
|
92395
92396
|
parserInitLock = web_tree_sitter__WEBPACK_IMPORTED_MODULE_0__.Parser.init({
|
|
92396
|
-
wasmBinary: treeSitter
|
|
92397
|
+
wasmBinary: treeSitter,
|
|
92398
|
+
locateFile: scriptName => scriptName
|
|
92397
92399
|
}).then(() => web_tree_sitter__WEBPACK_IMPORTED_MODULE_0__.Language.load(treeSitterYaml)).then(yamlLanguage => {
|
|
92398
92400
|
const parserInstance = new web_tree_sitter__WEBPACK_IMPORTED_MODULE_0__.Parser();
|
|
92399
92401
|
parserInstance.setLanguage(yamlLanguage);
|