-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjumble.json
More file actions
44 lines (44 loc) · 1.38 KB
/
Copy pathjumble.json
File metadata and controls
44 lines (44 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"$schema": "https://raw.githubusercontent.com/oxydien/simple-mod-sync/refs/heads/main/schema.json",
"$comment": "TO USE THIS: https://raw.githubusercontent.com/oxydien/simple-mod-sync/refs/heads/main/tests/shemaFiles/jumble.json",
"$comment2": "Purposely made to break and handle edge cases",
"sync_version": 3,
"sync": [
{
"$comment": "Will fail because of type",
"url": "https://www.curseforge.com/api/v1/mods/419699/files/8191993/download",
"type": "some_unknown_type",
"name": "architectury",
"version": "lamm"
},
{
"$comment": "Will fail because of invalid URL",
"url": "ThisUrl://isNotValid",
"type": "shader",
"name": "complementary",
"version": "recc"
},
{
"$comment": "Should remove the resourcepack and SUCCEED",
"url": "",
"type": "resourcepack",
"name": "dark-mode",
"version": "fidd"
},
{
"$comment": "Will fail because of path",
"url": "https://cdn.modrinth.com/data/8oi3bsk5/versions/f1lDwn23/Terralith_26.1_v2.6.2.zip?mr_download_reason=standalone&mr_game_version=26.1.2&mr_loader=datapack",
"type": "packed",
"name": "terralith-packed",
"version": "matt",
"directory": "../../../testing/newOther"
}
],
"modify": [
{
"type": "remove",
"pattern": "^usercache\\.json$",
"path": "../../"
}
]
}