Skip to content

@loontail/minecraft-kit / InstallPhases

Variable: InstallPhases

ts
const InstallPhases: {
  COMPLETED: "completed";
  DOWNLOADING_ASSET_INDEX: "downloading-asset-index";
  DOWNLOADING_ASSETS: "downloading-assets";
  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";
};

Defined in: src/types/install.ts:8

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

Type Declaration

NameTypeDefault valueDefined in
COMPLETED"completed""completed"src/types/install.ts:21
DOWNLOADING_ASSET_INDEX"downloading-asset-index""downloading-asset-index"src/types/install.ts:13
DOWNLOADING_ASSETS"downloading-assets""downloading-assets"src/types/install.ts:14
DOWNLOADING_CLIENT_JAR"downloading-client-jar""downloading-client-jar"src/types/install.ts:11
DOWNLOADING_LIBRARIES"downloading-libraries""downloading-libraries"src/types/install.ts:12
DOWNLOADING_VERSION_MANIFEST"downloading-version-manifest""downloading-version-manifest"src/types/install.ts:10
EXTRACTING_NATIVES"extracting-natives""extracting-natives"src/types/install.ts:15
INSTALLING_FABRIC"installing-fabric""installing-fabric"src/types/install.ts:17
INSTALLING_FORGE"installing-forge""installing-forge"src/types/install.ts:18
INSTALLING_RUNTIME"installing-runtime""installing-runtime"src/types/install.ts:16
PLANNING"planning""planning"src/types/install.ts:9
RUNNING_FORGE_PROCESSORS"running-forge-processors""running-forge-processors"src/types/install.ts:19
WRITING_FILES"writing-files""writing-files"src/types/install.ts:20

MIT License