UNPKG

@atlaskit/adf-schema

Version:

Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs

8 lines (5 loc) 394 B
import { createTransformer, type API, type FileInfo, type Options } from '@atlaskit/codemod-utils'; import { updateImportEntryPointsForBitbucketSchema } from './migrates/update-bitbucket-schema-entry-points'; const transformer: (fileInfo: FileInfo, { jscodeshift }: API, options: Options) => string = createTransformer(updateImportEntryPointsForBitbucketSchema); export default transformer;