Skip to content

@loontail/minecraft-kit v0.5.0 / InstallPhases

Variable: InstallPhases

ts
const InstallPhases: {
  COMPLETED: "completed";
  DOWNLOADING_ASSETS: "downloading-assets";
  DOWNLOADING_ASSET_INDEX: "downloading-asset-index";
  DOWNLOADING_CLIENT_JAR: "downloading-client-jar";
  DOWNLOADING_LIBRARIES: "downloading-libraries";
  DOWNLOADING_VERSION_MANIFEST: "downloading-version-manifest";
  EXTRACTING_NATIVES: "extracting-natives";
  INSTALLING_FABRIC: "installing-fabric";
  INSTALLING_FORGE: "installing-forge";
  INSTALLING_RUNTIME: "installing-runtime";
  PLANNING: "planning";
  RUNNING_FORGE_PROCESSORS: "running-forge-processors";
  WRITING_FILES: "writing-files";
};

Coarse-grained install phases. Used in install:phase-changed events so consumers can render a progress bar with named steps.

Type declaration

MemberTypeValue
COMPLETED"completed""completed"
DOWNLOADING_ASSETS"downloading-assets""downloading-assets"
DOWNLOADING_ASSET_INDEX"downloading-asset-index""downloading-asset-index"
DOWNLOADING_CLIENT_JAR"downloading-client-jar""downloading-client-jar"
DOWNLOADING_LIBRARIES"downloading-libraries""downloading-libraries"
DOWNLOADING_VERSION_MANIFEST"downloading-version-manifest""downloading-version-manifest"
EXTRACTING_NATIVES"extracting-natives""extracting-natives"
INSTALLING_FABRIC"installing-fabric""installing-fabric"
INSTALLING_FORGE"installing-forge""installing-forge"
INSTALLING_RUNTIME"installing-runtime""installing-runtime"
PLANNING"planning""planning"
RUNNING_FORGE_PROCESSORS"running-forge-processors""running-forge-processors"
WRITING_FILES"writing-files""writing-files"

Source

src/types/install.ts:5

MIT License