Files
misode.github.io/src/app/partners/index.ts
ChampionAsh5357 394beeab16 Add NeoForge Data Generators (#608)
* 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>
2024-10-04 05:10:33 +02:00

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)
}