@atlaskit/adf-schema
Version:
Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs
8 lines (5 loc) • 388 B
text/typescript
import { createTransformer, type API, type FileInfo, type Options } from '@atlaskit/codemod-utils';
import { updateImportEntryPointsForDefaultSchema } from './migrates/update-default-schema-entry-points';
const transformer: (fileInfo: FileInfo, { jscodeshift }: API, options: Options) => string =
createTransformer(updateImportEntryPointsForDefaultSchema);
export default transformer;