@swagger-api/apidom-parser-adapter-yaml-1-2 1.0.0-beta.40 → 1.0.0-beta.42
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
|
+
# [1.0.0-beta.42](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.41...v1.0.0-beta.42) (2025-06-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-yaml-1-2
|
|
9
|
+
|
|
10
|
+
# [1.0.0-beta.41](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.40...v1.0.0-beta.41) (2025-06-04)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **deps:** resolve downstream tree-sitter peer dep issue ([#4947](https://github.com/swagger-api/apidom/issues/4947)) ([ca2e9ee](https://github.com/swagger-api/apidom/commit/ca2e9ee55b75b4b2fe8911727a95ca1d3371ebac))
|
|
15
|
+
|
|
6
16
|
# [1.0.0-beta.40](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.39...v1.0.0-beta.40) (2025-05-30)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-yaml-1-2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swagger-api/apidom-parser-adapter-yaml-1-2",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.42",
|
|
4
4
|
"description": "Parser adapter for parsing YAML documents into base namespace.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"build:es": "npm run build:wasm && npm run build:wasm:copy && cross-env BABEL_ENV=es babel src --out-dir src --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward'",
|
|
31
31
|
"build:cjs": "npm run build:wasm && npm run build:wasm:copy && BABEL_ENV=cjs babel src --out-dir src --extensions '.ts' --out-file-extension '.cjs' --root-mode 'upward'",
|
|
32
32
|
"build:umd:browser": "npm run build:wasm && npm run build:wasm:copy && cross-env BABEL_ENV=browser webpack --config config/webpack/browser.config.js --progress",
|
|
33
|
-
"build:wasm": "node ../../scripts/file-exists.js
|
|
34
|
-
"build:wasm:copy": "copyfiles -u
|
|
33
|
+
"build:wasm": "node ../../scripts/file-exists.js ./node_modules/@tree-sitter-grammars/tree-sitter-yaml/tree-sitter-yaml.wasm && exit 0 || cd ./node_modules/@tree-sitter-grammars/tree-sitter-yaml && tree-sitter generate ./grammar.js && tree-sitter build --wasm && node-gyp rebuild",
|
|
34
|
+
"build:wasm:copy": "copyfiles -u 3 ./node_modules/@tree-sitter-grammars/tree-sitter-yaml/tree-sitter-yaml.wasm wasm",
|
|
35
35
|
"lint": "eslint ./",
|
|
36
36
|
"lint:fix": "eslint ./ --fix",
|
|
37
37
|
"clean": "rimraf --glob 'src/**/*.mjs' 'src/**/*.cjs' 'test/**/*.mjs' ./dist ./types",
|
|
@@ -52,14 +52,14 @@
|
|
|
52
52
|
"license": "Apache-2.0",
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@babel/runtime-corejs3": "^7.26.10",
|
|
55
|
-
"@swagger-api/apidom-ast": "^1.0.0-beta.
|
|
56
|
-
"@swagger-api/apidom-core": "^1.0.0-beta.
|
|
57
|
-
"@swagger-api/apidom-error": "^1.0.0-beta.
|
|
55
|
+
"@swagger-api/apidom-ast": "^1.0.0-beta.42",
|
|
56
|
+
"@swagger-api/apidom-core": "^1.0.0-beta.42",
|
|
57
|
+
"@swagger-api/apidom-error": "^1.0.0-beta.42",
|
|
58
58
|
"@tree-sitter-grammars/tree-sitter-yaml": "=0.7.1",
|
|
59
59
|
"@types/ramda": "~0.30.0",
|
|
60
60
|
"ramda": "~0.30.0",
|
|
61
61
|
"ramda-adjunct": "^5.0.0",
|
|
62
|
-
"tree-sitter": "=0.22.
|
|
62
|
+
"tree-sitter": "=0.22.4",
|
|
63
63
|
"web-tree-sitter": "=0.24.5"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"README.md",
|
|
77
77
|
"CHANGELOG.md"
|
|
78
78
|
],
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "3aaeb7b99ee756f57eafdd48bbf4cf667f91c6c4"
|
|
80
80
|
}
|