-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathconfig.json
More file actions
66 lines (66 loc) · 1.35 KB
/
Copy pathconfig.json
File metadata and controls
66 lines (66 loc) · 1.35 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"$schema": "https://raw.githubusercontent.com/Bedrock-OSS/regolith-schemas/main/config/v1.4.json",
"author": "ForestOfLight",
"name": "Canopy",
"packs": {
"behaviorPack": "./Canopy[BP]",
"resourcePack": "./Canopy[RP]"
},
"regolith": {
"dataPath": "./data",
"filterDefinitions": {
"bump_version": {
"runWith": "nodejs",
"script": "filters/bump_version/main.js"
},
"update_mob_data": {
"runWith": "nodejs",
"script": "filters/update_mob_data/main.js"
},
"package_mcaddon": {
"runWith": "nodejs",
"script": "filters/package_mcaddon/main.js"
}
},
"formatVersion": "1.4.0",
"profiles": {
"default": {
"export": {
"build": "standard",
"readOnly": false,
"target": "development",
"rpName": "project.name+'[RP]'",
"bpName": "project.name+'[BP]'"
},
"filters": []
},
"preview": {
"export": {
"build": "preview",
"readOnly": false,
"target": "development",
"rpName": "project.name+'[RP]'",
"bpName": "project.name+'[BP]'"
},
"filters": []
},
"release": {
"export": {
"target": "none"
},
"filters": [
{ "filter": "update_mob_data" },
{ "filter": "package_mcaddon" }
]
},
"bump-version": {
"export": {
"target": "none"
},
"filters": [
{ "filter": "bump_version" }
]
}
}
}
}