From 70f9bb433cdc75ef85db489ee181a35fe3d67f03 Mon Sep 17 00:00:00 2001 From: Kir_Antipov Date: Sun, 5 Mar 2023 09:39:59 +0000 Subject: [PATCH] Added `loaders/fabric` module --- src/loaders/fabric/index.ts | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/loaders/fabric/index.ts diff --git a/src/loaders/fabric/index.ts b/src/loaders/fabric/index.ts new file mode 100644 index 0000000..5607d9c --- /dev/null +++ b/src/loaders/fabric/index.ts @@ -0,0 +1,47 @@ +export { + FabricContactInformation, +} from "./fabric-contact-information"; + +export { + FabricDependency, + FabricDependencyList, + + getFabricDependencies, + toFabricDependencyArray, + normalizeFabricDependency, +} from "./fabric-dependency"; + +export { + FabricDependencyType, +} from "./fabric-dependency-type"; + +export { + FabricDeveloper, +} from "./fabric-developer"; + +export { + FabricEnvironmentType, +} from "./fabric-environment-type"; + +export { + FabricMetadata, +} from "./fabric-metadata"; + +export { + FabricMetadataCustomPayload, + + getFabricMetadataCustomPayload, + getLoadersFromFabricMetadataCustomPayload, + getDependenciesFromFabricMetadataCustomPayload, + getProjectIdFromFabricMetadataCustomPayload, +} from "./fabric-metadata-custom-payload"; + +export { + FabricMetadataReader, +} from "./fabric-metadata-reader"; + +export { + RawFabricMetadata, + + FABRIC_MOD_JSON, +} from "./raw-fabric-metadata";