@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 +6 -0
- package/README.md +1 -0
- package/dist/cmds/compile/index.d.ts +3 -2
- package/dist/cmds/start-server/index.d.ts +2 -1
- package/dist/codegen/index.d.ts +1 -0
- package/dist/index.js +774 -745
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -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
|
|
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 {};
|
package/dist/codegen/index.d.ts
CHANGED