From afa87af01c79a9baa539f2992d32154d2a4739bd Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sat, 14 Feb 2026 14:46:37 -0800 Subject: task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq --- .../node_modules/mdn-data/css/at-rules.schema.json | 131 --------------------- 1 file changed, 131 deletions(-) delete mode 100644 vanilla/node_modules/mdn-data/css/at-rules.schema.json (limited to 'vanilla/node_modules/mdn-data/css/at-rules.schema.json') diff --git a/vanilla/node_modules/mdn-data/css/at-rules.schema.json b/vanilla/node_modules/mdn-data/css/at-rules.schema.json deleted file mode 100644 index 9c89255..0000000 --- a/vanilla/node_modules/mdn-data/css/at-rules.schema.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "definitions": { - "stringOrPropertyList": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "array", - "minItems": 1, - "uniqueItems": true, - "items": { - "type": "string", - "property-reference": { - "comment": "property-reference is an extension to the JSON schema validator. Here it jumps 3 levels up in the hierarchy and tests if a value is an existing key in descriptors. See test/validate-schema.js for implementation details.", - "$data": "3" - } - } - } - ] - } - }, - "type": "object", - "additionalProperties": { - "type": "object", - "additionalProperties": false, - "properties": { - "syntax": { - "type": "string" - }, - "interfaces": { - "type": "array", - "items": { - "type": "string" - } - }, - "groups": { - "type": "array", - "minitems": 1, - "uniqueItems": true, - "items": { - "$ref": "definitions.json#/groupList" - } - }, - "descriptors": { - "type": "object", - "additionalProperties": { - "type": "object", - "additionalProperties": false, - "properties": { - "syntax": { - "type": "string" - }, - "media": { - "oneOf": [ - { - "type": "string", - "enum": [ - "all", - "continuous", - "paged", - "visual" - ] - }, - { - "type": "array", - "minItems": 2, - "uniqueItems": true, - "items": { - "type": "string", - "enum": [ - "continuous", - "paged", - "visual" - ] - } - } - ] - }, - "initial": { - "$ref": "#/definitions/stringOrPropertyList" - }, - "percentages": { - "$ref": "#/definitions/stringOrPropertyList" - }, - "computed": { - "$ref": "#/definitions/stringOrPropertyList" - }, - "order": { - "enum": [ - "orderOfAppearance", - "uniqueOrder" - ] - }, - "status": { - "enum": [ - "standard", - "nonstandard", - "experimental" - ] - } - }, - "required": [ - "syntax", - "initial", - "percentages", - "computed", - "order", - "status" - ] - } - }, - "status": { - "enum": [ - "standard", - "nonstandard", - "experimental" - ] - }, - "mdn_url": { - "type": "string", - "pattern": "^https://developer.mozilla.org/docs/Web/CSS/" - } - }, - "required": [ - "syntax", - "groups", - "status" - ] - } -} -- cgit v1.2.3