Skip to content

Commit b118d0c

Browse files
Merge pull request #20 from ForestOfLight/dev
v1.2.2
2 parents 54c5819 + 8281ce9 commit b118d0c

35 files changed

Lines changed: 561 additions & 591 deletions

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/build
22
/.regolith
33
.DS_Store
4-
.vscode/
5-
node_modules/
4+
node_modules/
5+
coverage/

.vscode/tasks.json

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "regolith: run default",
6+
"type": "shell",
7+
"command": "regolith run default",
8+
"problemMatcher": [],
9+
"group": {
10+
"kind": "build",
11+
"isDefault": true
12+
},
13+
"presentation": {
14+
"echo": true,
15+
"close": true
16+
}
17+
},
18+
{
19+
"label": "regolith: run preview",
20+
"type": "shell",
21+
"command": "regolith run preview",
22+
"problemMatcher": [],
23+
"group": "build",
24+
"presentation": {
25+
"echo": true,
26+
"close": true
27+
}
28+
},
29+
{
30+
"label": "regolith: run release",
31+
"type": "shell",
32+
"command": "regolith run release",
33+
"problemMatcher": [],
34+
"group": "build",
35+
"presentation": {
36+
"echo": true,
37+
"reveal": "always",
38+
"close": false
39+
}
40+
},
41+
{
42+
"label": "regolith: bump version",
43+
"type": "shell",
44+
"command": "regolith run bump-version",
45+
"problemMatcher": [],
46+
"presentation": {
47+
"echo": true,
48+
"reveal": "always",
49+
"panel": "new",
50+
"close": false
51+
}
52+
},
53+
{
54+
"label": "regolith: watch default",
55+
"type": "shell",
56+
"command": "regolith watch default",
57+
"isBackground": true,
58+
"problemMatcher": {
59+
"pattern": [
60+
{
61+
"regexp": ".",
62+
"file": 1,
63+
"location": 2,
64+
"message": 3
65+
}
66+
],
67+
"background": {
68+
"activeOnStart": true,
69+
"beginsPattern": ".",
70+
"endsPattern": "."
71+
}
72+
},
73+
"presentation": {
74+
"echo": true,
75+
"close": true
76+
}
77+
},
78+
{
79+
"label": "regolith: watch preview",
80+
"type": "shell",
81+
"command": "regolith watch preview",
82+
"isBackground": true,
83+
"problemMatcher": {
84+
"pattern": [
85+
{
86+
"regexp": ".",
87+
"file": 1,
88+
"location": 2,
89+
"message": 3
90+
}
91+
],
92+
"background": {
93+
"activeOnStart": true,
94+
"beginsPattern": ".",
95+
"endsPattern": "."
96+
}
97+
},
98+
"presentation": {
99+
"echo": true,
100+
"close": true
101+
}
102+
}
103+
]
104+
}

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55

66
[![GitHub Downloads](https://img.shields.io/github/downloads/ForestOfLight/Understudy/total?label=Github%20downloads&logo=github)](https://github.com/ForestOfLight/Understudy/releases/latest)
77
[![Curseforge Downloads](https://cf.way2muchnoise.eu/full_1093805_downloads.svg)](https://www.curseforge.com/minecraft-bedrock/addons/understudy)
8-
[![Minecraft - Version](https://img.shields.io/badge/Minecraft-v26.0_(Bedrock)-brightgreen)](https://feedback.minecraft.net/hc/en-us/sections/360001186971-Release-Changelogs)
9-
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/bee7bd9061ab4085b1a26624c1f97e2c)](https://app.codacy.com/gh/ForestOfLight/Understudy/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
8+
[![Minecraft - Version](https://img.shields.io/badge/Minecraft-v26.20_(Bedrock)-brightgreen)](https://feedback.minecraft.net/hc/en-us/sections/360001186971-Release-Changelogs)
109
[![Discord](https://badgen.net/discord/members/9KGche8fxm?icon=discord&label=Discord&list=what)](https://discord.gg/9KGche8fxm)
1110
</div>
1211

__mocks__/@minecraft/server-gametest.js

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)