Blockception / BC-Minecraft-Bedrock-Diagnoser

A typescript package library that provides diagnostics for Minecraft bedrock projects
https://www.npmjs.com/package/bc-minecraft-bedrock-diagnoser
BSD 3-Clause "New" or "Revised" License
2 stars 2 forks source link
addons contribute diagnoser hacktoberfest hacktoberfest2022 help-wanted minecraft minecraft-bedrock nodejs open-source typescript

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