@fontoxml/fontoxml-development-tools
Version:
Development tools for Fonto.
24 lines (20 loc) • 831 B
JavaScript
import path from 'path';
import commandAttribute from './src/command.attribute.js';
import commandattributes from './src/command.attributes.js';
import commandElement from './src/command.element.js';
import commandElements from './src/command.elements.js';
import commandSchemas from './src/command.schemas.js';
import commandSympleTypes from './src/command.simpletypes.js';
export default async (moduleRegistration) => {
moduleRegistration.registerContextInformer(path.resolve(
moduleRegistration.getPath(),
'src',
'context-informer.schema.js'
));
await commandAttribute(moduleRegistration);
await commandattributes(moduleRegistration);
await commandElement(moduleRegistration);
await commandElements(moduleRegistration);
await commandSchemas(moduleRegistration);
await commandSympleTypes(moduleRegistration);
};