@tinacms/cli 0.60.12 → 0.60.13

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # tinacms-cli
2
2
 
3
+ ## 0.60.13
4
+
5
+ ### Patch Changes
6
+
7
+ - 9d28ea29e: hide some existing start:server logging behind --verbose flag. format some messages to make them easier to read
8
+
3
9
  ## 0.60.12
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -24,6 +24,7 @@ Usage: @tinacms/cli command [options]
24
24
  Options:
25
25
  -V, --version output the version number
26
26
  -h, --help display help for command
27
+ -v, --verbose increase verbosity of console output
27
28
 
28
29
  Commands:
29
30
  server:start [options] Start Filesystem Graphql Server
@@ -12,7 +12,8 @@ limitations under the License.
12
12
  */
13
13
  import type { TinaCloudSchema } from '@tinacms/graphql';
14
14
  export declare const resetGeneratedFolder: () => Promise<void>;
15
- export declare const compile: (_ctx: any, _next: any, options?: {
16
- schemaFileType: string;
15
+ export declare const compile: (_ctx: any, _next: any, options: {
16
+ schemaFileType?: string;
17
+ verbose?: boolean;
17
18
  }) => Promise<void>;
18
19
  export declare const defineSchema: (config: TinaCloudSchema) => TinaCloudSchema;
@@ -18,6 +18,7 @@ interface Options {
18
18
  noWatch?: boolean;
19
19
  noSDK: boolean;
20
20
  noTelemetry: boolean;
21
+ verbose?: boolean;
21
22
  }
22
- export declare function startServer(_ctx: any, _next: any, { port, command, noWatch, experimentalData, noSDK, noTelemetry, watchFolders, }: Options): Promise<void>;
23
+ export declare function startServer(_ctx: any, _next: any, { port, command, noWatch, experimentalData, noSDK, noTelemetry, watchFolders, verbose, }: Options): Promise<void>;
23
24
  export {};
@@ -13,4 +13,5 @@ limitations under the License.
13
13
  import { GraphQLSchema } from 'graphql';
14
14
  export declare const generateTypes: (schema: GraphQLSchema, queryPathGlob?: string, fragDocPath?: string, options?: {
15
15
  noSDK: boolean;
16
+ verbose?: boolean;
16
17
  }) => Promise<string>;