From e6c0eaeba7f8f6cbabfd5c14fe2dfbd5d418e2ed Mon Sep 17 00:00:00 2001 From: DaanV2 Date: Fri, 8 Oct 2021 21:17:42 +0200 Subject: [PATCH] Fixing manifest to support gametests --- source/general/manifest/manifest.2.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/source/general/manifest/manifest.2.json b/source/general/manifest/manifest.2.json index 737f3718..2bdade35 100644 --- a/source/general/manifest/manifest.2.json +++ b/source/general/manifest/manifest.2.json @@ -120,8 +120,8 @@ }, "type": { "type": "string", - "enum": ["resources", "data", "client_data", "interface", "world_template"], - "description": "This is the type of the module. Can be any of the following: resources, data, client_data, interface, world_template", + "enum": ["resources", "data", "client_data", "interface", "world_template", "javascript"], + "description": "This is the type of the module.", "title": "Type" }, "uuid": { @@ -133,6 +133,11 @@ "$ref": "#/definitions/version", "description": "This is the version of your pack in the format [majorVersion, minorVersion, revision]. The version number is used when importing a pack that has been imported before. The new pack will replace the old one if the version is higher, and ignored if it's the same or lower", "title": "Version" + }, + "entry": { + "type": "string", + "title": "Entry", + "description": "The javascript entry point for tests, only works if types has been set to `javascript`" } } }