@veryfront/ext-yaml 0.1.1227 → 0.1.1229
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 +2 -2
- package/esm/src/adapter.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,8 +13,8 @@ Veryfront core owns the `SKILL.md` frontmatter envelope, document limits,
|
|
|
13
13
|
mapping-root validation, immutable snapshots, and Skill metadata policy. This
|
|
14
14
|
extension receives only the YAML source between the delimiters and returns the
|
|
15
15
|
decoded, untrusted value. Keeping that boundary narrow prevents YAML parser
|
|
16
|
-
details and third-party dependencies from entering core
|
|
17
|
-
the Deno standard library and nothing else, so the parser
|
|
16
|
+
details and third-party dependencies from entering core. Core may depend on
|
|
17
|
+
the Deno standard library and nothing else, so the parser must live here.
|
|
18
18
|
|
|
19
19
|
## YAML version
|
|
20
20
|
|
package/esm/src/adapter.js
CHANGED
|
@@ -3,8 +3,8 @@ import { createSkillDocumentParserProvider, createYamlParserProvider, } from "ve
|
|
|
3
3
|
/**
|
|
4
4
|
* The tags a JSON-representable document may carry explicitly. `yaml`'s
|
|
5
5
|
* `Schema.knownTags` fallback resolves YAML 1.1 tags such as `!!binary`,
|
|
6
|
-
* `!!timestamp`, `!!set` and `!!omap` even under the 1.2 core schema
|
|
7
|
-
*
|
|
6
|
+
* `!!timestamp`, `!!set` and `!!omap` even under the 1.2 core schema without
|
|
7
|
+
* raising a warning, so the parser options alone cannot express
|
|
8
8
|
* `@std/yaml`'s JSON schema. Rejecting every other explicit tag does.
|
|
9
9
|
*/
|
|
10
10
|
const JSON_SCHEMA_TAGS = new Set([
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veryfront/ext-yaml",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1229",
|
|
4
4
|
"description": "Veryfront first-party extension package for ext-yaml",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"veryfront",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"yaml": "2.9.0"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"veryfront": "^0.1.
|
|
53
|
+
"veryfront": "^0.1.1229"
|
|
54
54
|
},
|
|
55
55
|
"type": "module",
|
|
56
56
|
"types": "./esm/src/index.d.ts",
|