diff options
| author | Fuwn <[email protected]> | 2024-12-03 04:23:53 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-12-03 04:23:53 +0000 |
| commit | 4be6e521f639617fefda4c3f32dda41aa36199f6 (patch) | |
| tree | eeb481a9fb2ad8756812b827f0f10294afa65226 /yae.schema.json | |
| parent | fix(init): initialise base empty environment on init command (diff) | |
| download | yae-4be6e521f639617fefda4c3f32dda41aa36199f6.tar.xz yae-4be6e521f639617fefda4c3f32dda41aa36199f6.zip | |
feat(yae): track sri hash field for sources
Diffstat (limited to 'yae.schema.json')
| -rw-r--r-- | yae.schema.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yae.schema.json b/yae.schema.json index 04a0e75..d0c1e22 100644 --- a/yae.schema.json +++ b/yae.schema.json @@ -4,11 +4,12 @@ "properties": { "$schema": { "type": "string" } }, "additionalProperties": { "type": "object", - "required": ["url", "sha256", "unpack", "type"], + "required": ["url", "sha256", "hash", "unpack", "type"], "additionalProperties": false, "properties": { "url": { "type": "string" }, "sha256": { "type": "string" }, + "hash": { "type": "string" }, "unpack": { "type": "boolean" }, "type": { "type": "string" }, "version": { "type": "string" }, |