@tinacms/cli 0.0.0-bdc07c1-20250506013835 → 0.0.0-bdea884-20250606054015

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,4 @@
1
- import type { Collection, TinaField } from '@tinacms/schema-tools';
2
- import { ContentFrontmatterFormat } from '@tinacms/common';
1
+ import type { Collection, TinaField, ContentFrontmatterFormat } from '@tinacms/schema-tools';
3
2
  export declare const stringifyLabel: (label: string) => string;
4
3
  export declare const stringifyLabelWithField: (label: string) => string;
5
4
  export declare const generateAllTemplates: ({ pathToForestryConfig, }: {
@@ -1,5 +1,5 @@
1
1
  import { CLICommand } from '../index';
2
- import { ContentFrontmatterFormat } from '@tinacms/common';
2
+ import { ContentFrontmatterFormat } from '@tinacms/schema-tools';
3
3
  export interface Framework {
4
4
  name: 'next' | 'hugo' | 'jekyll' | 'other';
5
5
  reactive: boolean;
@@ -1,6 +1,6 @@
1
1
  import { Framework, InitEnvironment } from '../';
2
2
  import { Config, ImportStatement } from './types';
3
- import { ContentFrontmatterFormat } from '@tinacms/common';
3
+ import { ContentFrontmatterFormat } from '@tinacms/schema-tools';
4
4
  export * from './askTinaCloudSetup';
5
5
  export * from './types';
6
6
  export * from './gitProvider';
@@ -1,4 +1,4 @@
1
- import { ContentFrontmatterFormat } from '@tinacms/common';
1
+ import { ContentFrontmatterFormat } from '@tinacms/schema-tools';
2
2
  import { Framework, GeneratedFileType } from '../';
3
3
  export type Config = {
4
4
  typescript: boolean;
package/dist/index.d.ts CHANGED
@@ -1 +1,4 @@
1
- export * from "../src/index"
1
+ import { Cli } from 'clipanion';
2
+ export type { Schema, TinaSchema, Collection, TinaTemplate, } from '@tinacms/graphql';
3
+ declare const cli: Cli<import("clipanion").BaseContext>;
4
+ export default cli;