@tinacms/cli 0.60.12 → 0.60.15
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 +19 -0
- package/README.md +1 -0
- package/bin/tinacms +2 -2
- package/dist/cmds/compile/index.d.ts +3 -2
- package/dist/cmds/init/setup-files/index.d.ts +2 -1
- package/dist/cmds/start-server/index.d.ts +2 -1
- package/dist/codegen/index.d.ts +1 -0
- package/dist/index.js +818 -773
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# tinacms-cli
|
|
2
2
|
|
|
3
|
+
## 0.60.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ceb826916: Fix issue where \_app override from tina init was improperly formatted
|
|
8
|
+
|
|
9
|
+
## 0.60.14
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [6a6f137ae]
|
|
14
|
+
- @tinacms/graphql@0.60.0
|
|
15
|
+
|
|
16
|
+
## 0.60.13
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- 9d28ea29e: hide some existing start:server logging behind --verbose flag. format some messages to make them easier to read
|
|
21
|
+
|
|
3
22
|
## 0.60.12
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/README.md
CHANGED
package/bin/tinacms
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;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare const adminPage = "import { TinaAdmin } from 'tinacms';\nexport default TinaAdmin;\n";
|
|
2
|
-
export declare const blogPost = "---\ntitle: Vote For Pedro\n---\n# Welcome to the blog.\n\n> To edit this site head over to the [`/admin`](/admin) route. Then click the pencil icon in the bottom lefthand corner to start editing \uD83E\uDD99
|
|
2
|
+
export declare const blogPost = "---\ntitle: Vote For Pedro\n---\n# Welcome to the blog.\n\n> To edit this site head over to the [`/admin`](/admin) route. Then click the pencil icon in the bottom lefthand corner to start editing \uD83E\uDD99.\n\n# Dixi gaude Arethusa\n\n<PageSection heading=\"Oscula mihi\" content=\"Lorem markdownum numerabilis armentorum platanus, cultros coniunx sibi per\nsilvas, nostris clausit sequemur diverso scopulosque. Fecit tum alta sed non\nfalcato murmura, geminas donata Amyntore, quoque Nox. Invitam inquit, modo\nnocte; ut ignis faciemque manes in imagine sinistra ut mucrone non ramos\nsepulcro supplex. Crescentesque populos motura, fit cumque. Verumque est; retro\nsibi tristia bracchia Aetola telae caruerunt et.\"/>\n\n\n## Mutato fefellimus sit demisit aut alterius sollicito\n\nPhaethonteos vestes quem involvite iuvenca; furiali anne: sati totumque,\n**corpora** cum rapacibus nunc! Nervis repetatne, miserabile doleas, deprensum\nhunc, fluctus Threicio, ad urbes, magicaeque, quid. Per credensque series adicis\npoteram [quidem](#)! Iam uni mensas victrix\nvittas ut flumina Satyri adulter; bellum iacet domitae repercusso truncis urnis\nmille rigidi sub taurum.\n\n\n";
|
|
3
3
|
export declare const nextPostPage: () => string;
|
|
4
4
|
export declare const AppJsContent: (usingSrc: boolean, extraImports?: string) => string;
|
|
5
|
+
export declare const AppJsContentPrintout: (usingSrc: boolean, extraImports?: string) => string;
|
|
@@ -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