@dsillman2000/yaml-reference-ts 1.4.1 → 1.4.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/README.md +3 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
# YAML Reference Resolver (TypeScript)
|
|
2
|
+
 
|
|
3
|
+
|
|
4
|
+
|
|
2
5
|
|
|
3
6
|
A Node.js TypeScript library for resolving YAML documents containing `!reference`, `!reference-all`, `!flatten`, and `!merge` tags. The library uses the `eemeli/yaml` package to parse YAML with custom tags and resolve references to external YAML files.
|
|
4
7
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dsillman2000/yaml-reference-ts",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "A Node.js TypeScript library for resolving YAML documents containing !reference and !reference-all tags",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"format:check": "prettier --check .",
|
|
27
27
|
"lint": "eslint -c eslint.config.mjs",
|
|
28
28
|
"prepublishOnly": "npm run build",
|
|
29
|
-
"prepare": "npm run build"
|
|
29
|
+
"prepare": "npm run build",
|
|
30
|
+
"check-specs": "npm run build && ./scripts/update-spec-badge.sh"
|
|
30
31
|
},
|
|
31
32
|
"keywords": [
|
|
32
33
|
"yaml",
|