bc-minecraft-bedrock-diagnoser

A typescript package library that provides diagnostics for minecraft bedrock projects


Keywords
diagnoser, diagnostics, minecraft, bedrock, addons, contribute, hacktoberfest, hacktoberfest2022, help-wanted, minecraft-bedrock, nodejs, open-source, typescript
License
BSD-3-Clause
Install
npm install bc-minecraft-bedrock-diagnoser@1.20.71-6

Documentation

BC-Minecraft-Bedrock-Diagnoser

Npm Package & Publish Npm Test tagged-release

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