Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/build
/.regolith
.DS_Store
.vscode/
node_modules/
node_modules/
coverage/
104 changes: 104 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "regolith: run default",
"type": "shell",
"command": "regolith run default",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"close": true
}
},
{
"label": "regolith: run preview",
"type": "shell",
"command": "regolith run preview",
"problemMatcher": [],
"group": "build",
"presentation": {
"echo": true,
"close": true
}
},
{
"label": "regolith: run release",
"type": "shell",
"command": "regolith run release",
"problemMatcher": [],
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"close": false
}
},
{
"label": "regolith: bump version",
"type": "shell",
"command": "regolith run bump-version",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"panel": "new",
"close": false
}
},
{
"label": "regolith: watch default",
"type": "shell",
"command": "regolith watch default",
"isBackground": true,
"problemMatcher": {
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "."
}
},
"presentation": {
"echo": true,
"close": true
}
},
{
"label": "regolith: watch preview",
"type": "shell",
"command": "regolith watch preview",
"isBackground": true,
"problemMatcher": {
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "."
}
},
"presentation": {
"echo": true,
"close": true
}
}
]
}
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@

[![GitHub Downloads](https://img.shields.io/github/downloads/ForestOfLight/Understudy/total?label=Github%20downloads&logo=github)](https://github.com/ForestOfLight/Understudy/releases/latest)
[![Curseforge Downloads](https://cf.way2muchnoise.eu/full_1093805_downloads.svg)](https://www.curseforge.com/minecraft-bedrock/addons/understudy)
[![Minecraft - Version](https://img.shields.io/badge/Minecraft-v26.0_(Bedrock)-brightgreen)](https://feedback.minecraft.net/hc/en-us/sections/360001186971-Release-Changelogs)
[![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)
[![Minecraft - Version](https://img.shields.io/badge/Minecraft-v26.20_(Bedrock)-brightgreen)](https://feedback.minecraft.net/hc/en-us/sections/360001186971-Release-Changelogs)
[![Discord](https://badgen.net/discord/members/9KGche8fxm?icon=discord&label=Discord&list=what)](https://discord.gg/9KGche8fxm)
</div>

Expand Down
46 changes: 0 additions & 46 deletions __mocks__/@minecraft/server-gametest.js

This file was deleted.

Loading
Loading