@tinacms/cli 0.0.0-9594668-20241223035907 → 0.0.0-9981085-20241223065807
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,5 @@
|
|
|
1
1
|
import type { Database } from '@tinacms/graphql';
|
|
2
|
-
import { type BuildOptions,
|
|
2
|
+
import { type BuildOptions, type InlineConfig, type Plugin } from 'vite';
|
|
3
3
|
import type { ConfigManager } from '../config-manager';
|
|
4
4
|
/**
|
|
5
5
|
* This type is duplicated in he `TinaMediaStore`
|
|
@@ -22,23 +22,12 @@ interface StaticMediaItem {
|
|
|
22
22
|
export interface StaticMedia {
|
|
23
23
|
[offset: string]: StaticMediaItem[];
|
|
24
24
|
}
|
|
25
|
-
export declare const
|
|
26
|
-
rootPath: string;
|
|
27
|
-
viteConfigEnv?: ConfigEnv;
|
|
28
|
-
}) => Promise<{
|
|
29
|
-
path: string;
|
|
30
|
-
config: UserConfig;
|
|
31
|
-
dependencies: string[];
|
|
32
|
-
} | {
|
|
33
|
-
config: UserConfig;
|
|
34
|
-
}>;
|
|
35
|
-
export declare const createConfig: ({ configManager, database, apiURL, plugins, noWatch, rollupOptions, viteConfigEnv, }: {
|
|
25
|
+
export declare const createConfig: ({ configManager, apiURL, plugins, noWatch, rollupOptions, }: {
|
|
36
26
|
configManager: ConfigManager;
|
|
37
27
|
database: Database;
|
|
38
28
|
apiURL: string;
|
|
39
29
|
noWatch: boolean;
|
|
40
30
|
plugins?: Plugin[];
|
|
41
31
|
rollupOptions?: BuildOptions["rollupOptions"];
|
|
42
|
-
viteConfigEnv?: ConfigEnv;
|
|
43
32
|
}) => Promise<InlineConfig>;
|
|
44
33
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tinacms/cli",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-9981085-20241223065807",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
"@tinacms/app": "2.1.14",
|
|
88
88
|
"@tinacms/graphql": "1.5.9",
|
|
89
89
|
"@tinacms/metrics": "1.0.8",
|
|
90
|
-
"@tinacms/schema-tools": "1.6.9",
|
|
91
90
|
"@tinacms/search": "1.0.36",
|
|
91
|
+
"@tinacms/schema-tools": "1.6.9",
|
|
92
92
|
"tinacms": "2.5.2"
|
|
93
93
|
},
|
|
94
94
|
"publishConfig": {
|