mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 00:11:02 -05:00
Added loaders/quilt
module
This commit is contained in:
parent
ad769f1e9c
commit
f029df1567
1 changed files with 41 additions and 0 deletions
41
src/loaders/quilt/index.ts
Normal file
41
src/loaders/quilt/index.ts
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
export {
|
||||||
|
QuiltDependency,
|
||||||
|
|
||||||
|
getQuiltDependencies,
|
||||||
|
normalizeQuiltDependency,
|
||||||
|
} from "./quilt-dependency";
|
||||||
|
|
||||||
|
export {
|
||||||
|
QuiltEnvironmentType,
|
||||||
|
} from "./quilt-environment-type";
|
||||||
|
|
||||||
|
export {
|
||||||
|
QuiltLicense,
|
||||||
|
} from "./quilt-license";
|
||||||
|
|
||||||
|
export {
|
||||||
|
QuiltMetadata,
|
||||||
|
} from "./quilt-metadata";
|
||||||
|
|
||||||
|
export {
|
||||||
|
QuiltPlugin,
|
||||||
|
} from "./quilt-plugin";
|
||||||
|
|
||||||
|
export {
|
||||||
|
QuiltMetadataCustomPayload,
|
||||||
|
|
||||||
|
getQuiltMetadataCustomPayload,
|
||||||
|
getDependenciesFromQuiltMetadataCustomPayload,
|
||||||
|
getLoadersFromQuiltMetadataCustomPayload,
|
||||||
|
getProjectIdFromQuiltMetadataCustomPayload,
|
||||||
|
} from "./quilt-metadata-custom-payload";
|
||||||
|
|
||||||
|
export {
|
||||||
|
QuiltMetadataReader,
|
||||||
|
} from "./quilt-metadata-reader";
|
||||||
|
|
||||||
|
export {
|
||||||
|
RawQuiltMetadata,
|
||||||
|
|
||||||
|
QUILT_MOD_JSON,
|
||||||
|
} from "./raw-quilt-metadata";
|
Loading…
Reference in a new issue