-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.json
More file actions
59 lines (59 loc) · 1.13 KB
/
Copy pathconfig.json
File metadata and controls
59 lines (59 loc) · 1.13 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
{
"$schema": "https://raw.githubusercontent.com/Bedrock-OSS/regolith-schemas/main/config/v1.7.json",
"author": "ForestOfLight",
"name": "Understudy",
"packs": {
"behaviorPack": "./packs/BP",
"resourcePack": "./packs/RP"
},
"regolith": {
"dataPath": "./packs/data",
"filterDefinitions": {
"bump_version": {
"runWith": "nodejs",
"script": "filters/bump_version/main.js"
},
"package_mcpack": {
"runWith": "nodejs",
"script": "filters/package_mcpack/main.js"
}
},
"formatVersion": "1.7.0",
"profiles": {
"default": {
"export": {
"build": "standard",
"readOnly": false,
"target": "development",
"bpName": "project.name"
},
"filters": []
},
"preview": {
"export": {
"build": "preview",
"readOnly": false,
"target": "development",
"bpName": "project.name"
},
"filters": []
},
"release": {
"export": {
"target": "none"
},
"filters": [
{ "filter": "package_mcpack" }
]
},
"bump-version": {
"export": {
"target": "none"
},
"filters": [
{ "filter": "bump_version" }
]
}
}
}
}