bc-minecraft-bedrock-diagnoser
v1.21.44-1
Published
A typescript package library that provides diagnostics for minecraft bedrock projects
Downloads
2,057
Readme
BC-Minecraft-Bedrock-Diagnoser
A typescript package library that provides diagnostics for minecraft bedrock projects
const context: DiagnoserContext = {
getDiagnoser: (doc: TextDocument, project: MCProject) => { ... },
getDocument: (uri: string) => { ... },
getFiles: (folder: string, ignores: MCIgnore) => { ... },
cache: ProjectData
};
const diagnoser = new Diagnoser(context);
diagnoser.Process(doc): boolean;
diagnoser.ProcessFolder(folder, ignores): void;
diagnoser.ProcessPack(pack): void;
Contributing
First, read the contributing guide. fork the project, clone it and run the following commands:
Installation
npm ci
npm update