mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-23 07:10:41 +00:00
* feat(partner): Add neoforge integrations * Fix build and format file * fix(partner): Handle matching within choice node * Tweak some of the ChoiceNode's --------- Co-authored-by: Misode <misoloo64@gmail.com>
19 lines
822 B
TypeScript
19 lines
822 B
TypeScript
import type { CollectionRegistry, SchemaRegistry } from '@mcschema/core'
|
|
import type { VersionId } from '../services/Schemas.js'
|
|
import { initImmersiveWeathering } from './ImmersiveWeathering.js'
|
|
import { initLithostitched } from './Lithostitched.js'
|
|
import { initNeoForge } from './NeoForge.js'
|
|
import { initObsidian } from './Obsidian.js'
|
|
import { initOhTheTreesYoullGrow } from './OhTheTreesYoullGrow.js'
|
|
|
|
export * from './ImmersiveWeathering.js'
|
|
export * from './Lithostitched.js'
|
|
|
|
export function initPartners(schemas: SchemaRegistry, collections: CollectionRegistry, version: VersionId) {
|
|
initImmersiveWeathering(schemas, collections)
|
|
initLithostitched(schemas, collections, version)
|
|
initNeoForge(schemas, collections, version)
|
|
initObsidian(schemas, collections)
|
|
initOhTheTreesYoullGrow(schemas, collections)
|
|
}
|