@tinacms/cli 1.9.4 → 1.9.6
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/README.md +2 -2
- package/dist/cmds/forestry-migrate/util/index.d.ts +18 -18
- package/dist/cmds/init/prompts/authProvider.d.ts +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +2105 -2118
- package/dist/next/commands/build-command/index.d.ts +1 -1
- package/dist/next/commands/dev-command/index.d.ts +2 -2
- package/package.json +7 -7
|
@@ -8,7 +8,7 @@ export declare class BuildCommand extends BaseCommand {
|
|
|
8
8
|
partialReindex: boolean;
|
|
9
9
|
tinaGraphQLVersion: string;
|
|
10
10
|
/**
|
|
11
|
-
* This option allows the user to skip the
|
|
11
|
+
* This option allows the user to skip the TinaCloud checks if they want to. This could be useful for mismatched GraphQL versions or if they want to build only using the local client and never connect to TinaCloud
|
|
12
12
|
*/
|
|
13
13
|
skipCloudChecks: boolean;
|
|
14
14
|
skipSearchIndex: boolean;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import AsyncLock from 'async-lock';
|
|
2
1
|
import { Database } from '@tinacms/graphql';
|
|
2
|
+
import { SearchIndexer } from '@tinacms/search';
|
|
3
|
+
import AsyncLock from 'async-lock';
|
|
3
4
|
import { ConfigManager } from '../../config-manager';
|
|
4
5
|
import { BaseCommand } from '../baseCommands';
|
|
5
|
-
import { SearchIndexer } from '@tinacms/search';
|
|
6
6
|
export declare class DevCommand extends BaseCommand {
|
|
7
7
|
static paths: string[][];
|
|
8
8
|
watchFolders: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tinacms/cli",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.6",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@types/prompts": "^2.4.9",
|
|
38
38
|
"@types/yup": "^0.32.0",
|
|
39
39
|
"jest": "^29.7.0",
|
|
40
|
-
"@tinacms/scripts": "1.3.
|
|
40
|
+
"@tinacms/scripts": "1.3.4"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@graphql-codegen/core": "^2.6.8",
|
|
@@ -85,12 +85,12 @@
|
|
|
85
85
|
"vite": "^4.5.9",
|
|
86
86
|
"yup": "^1.6.1",
|
|
87
87
|
"zod": "^3.24.2",
|
|
88
|
-
"@tinacms/
|
|
89
|
-
"@tinacms/app": "2.2.4",
|
|
88
|
+
"@tinacms/app": "2.2.6",
|
|
90
89
|
"@tinacms/metrics": "1.0.9",
|
|
91
|
-
"@tinacms/
|
|
92
|
-
"@tinacms/
|
|
93
|
-
"tinacms": "
|
|
90
|
+
"@tinacms/graphql": "1.5.17",
|
|
91
|
+
"@tinacms/schema-tools": "1.7.3",
|
|
92
|
+
"@tinacms/search": "1.0.44",
|
|
93
|
+
"tinacms": "2.7.6"
|
|
94
94
|
},
|
|
95
95
|
"publishConfig": {
|
|
96
96
|
"registry": "https://registry.npmjs.org"
|