@speclynx/apidom-parser-adapter-yaml-1-2 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
+ **Note:** Version bump only for package @speclynx/apidom-parser-adapter-yaml-1-2
9
+
10
+ ## [2.10.1](https://github.com/speclynx/apidom/compare/v2.10.0...v2.10.1) (2026-02-08)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **adapter-yaml-1-2:** supress loading wasm file ([#81](https://github.com/speclynx/apidom/issues/81)) ([b05beb8](https://github.com/speclynx/apidom/commit/b05beb8edea8945c9cf41c96430ae5fe2098f9f2))
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
  **Note:** Version bump only for package @speclynx/apidom-parser-adapter-yaml-1-2
@@ -124,7 +124,8 @@ const analyze = async source => {
124
124
  if (parser === null && parserInitLock === null) {
125
125
  // acquire lock
126
126
  parserInitLock = web_tree_sitter__WEBPACK_IMPORTED_MODULE_0__.Parser.init({
127
- wasmBinary: treeSitter
127
+ wasmBinary: treeSitter,
128
+ locateFile: scriptName => scriptName
128
129
  }).then(() => web_tree_sitter__WEBPACK_IMPORTED_MODULE_0__.Language.load(treeSitterYaml)).then(yamlLanguage => {
129
130
  const parserInstance = new web_tree_sitter__WEBPACK_IMPORTED_MODULE_0__.Parser();
130
131
  parserInstance.setLanguage(yamlLanguage);