#minecraft #datapack #watch #utility #command-line-tool #comments #rpd

app resourcepackd

An utility for Minecraft datapack development

2 releases

0.8.1 May 29, 2023
0.8.0 May 22, 2023

#1821 in Development tools

Apache-2.0

19KB
263 lines

ResourcepackD (rpd)

An extremely simple CLI utility to watch minecraft data and resource packs for changes and compile them on fly!

RPD supports optional validation of JSON files and stripping comments from JSONC files, however other contents are not checked and are untouched. If you wish to use your pack in production I recommend to further use PackSquash on it.

Usage

Install using cargo or just download release binaries from Github

cargo install resourcepackd

You can then watch your directory for changes

rpd watch <ROOT_DIR> -o <OUT_FILE>

e.g.

rpd watch . -o build/resourcepack.zip

RPD will launch and you will be able to start developing your resourcepack! Whenever a file is changed, pack will be recompiled to provided directory.

You can also do one-time compilation with

rpd compile . -o build/resourcepack.zip

Enabling Validation

To validate JSON files and clean JSONC files you can add the -v flag:

rpd watch . -o build/resourcepack.zip -v

This will automatically perform validation on all .json and .mcmeta files, as well as JSONC comment stripping on all .jsonc and .mcmetac files.

Dependencies

~11–24MB
~303K SLoC