bc-minecraft-bedrock-project
v1.21.44-1
Published
The typescript library responsible for reading/parsing minecraft bedrock data
Downloads
2,171
Readme
Blockception Minecraft Bedrock Project
A project that deals with caching, summarizing Minecraft bedrock data
const context: ProjectContext = {
getDocument: (uri: string) => { ... },
getFiles: (folder: string, ignores: MCIgnore) => { ... },
};
const Data = new ProjectData(context);
const ProjectFolder = "c:\\project\\";
const manifests = ["c:\\project\\bp\\manifest.json", "c:\\project\\rp\\manifest.json", "c:\\project\\world\\manifest.json"];
const packs = Data.addPack(manifests, ProjectFolder);
//process documents into the pacts
Data.Process(...);
//OR
packs[0].process(...)
Contributing
First, read the contributing guide. fork the project, clone it and run the following commands:
Installation
npm ci
npm update