eddev 0.2.0-beta.17 → 0.2.0-beta.18

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.
@@ -15,7 +15,7 @@ export declare const EDConfigSchema: z.ZodObject<{
15
15
  enabled: boolean;
16
16
  uploads: "proxy" | "remote";
17
17
  plugins: "proxy" | "remote";
18
- theme: "proxy" | "remote" | "copy";
18
+ theme: "copy" | "proxy" | "remote";
19
19
  endpoints: Record<string, string>;
20
20
  }, {
21
21
  themeAssets?: string[] | undefined;
@@ -23,7 +23,7 @@ export declare const EDConfigSchema: z.ZodObject<{
23
23
  enabled: boolean;
24
24
  uploads: "proxy" | "remote";
25
25
  plugins: "proxy" | "remote";
26
- theme: "proxy" | "remote" | "copy";
26
+ theme: "copy" | "proxy" | "remote";
27
27
  endpoints: Record<string, string>;
28
28
  }>>;
29
29
  devUI: z.ZodEnum<["disabled", "enabled"]>;
@@ -35,7 +35,7 @@ export declare const EDConfigSchema: z.ZodObject<{
35
35
  enabled: boolean;
36
36
  uploads: "proxy" | "remote";
37
37
  plugins: "proxy" | "remote";
38
- theme: "proxy" | "remote" | "copy";
38
+ theme: "copy" | "proxy" | "remote";
39
39
  endpoints: Record<string, string>;
40
40
  } | undefined;
41
41
  devUI: "disabled" | "enabled";
@@ -47,7 +47,7 @@ export declare const EDConfigSchema: z.ZodObject<{
47
47
  enabled: boolean;
48
48
  uploads: "proxy" | "remote";
49
49
  plugins: "proxy" | "remote";
50
- theme: "proxy" | "remote" | "copy";
50
+ theme: "copy" | "proxy" | "remote";
51
51
  endpoints: Record<string, string>;
52
52
  } | undefined;
53
53
  devUI: "disabled" | "enabled";
@@ -6,7 +6,7 @@ export declare function getEDConfig(dir?: string): import("zod").SafeParseReturn
6
6
  enabled: boolean;
7
7
  uploads: "proxy" | "remote";
8
8
  plugins: "proxy" | "remote";
9
- theme: "proxy" | "remote" | "copy";
9
+ theme: "copy" | "proxy" | "remote";
10
10
  endpoints: Record<string, string>;
11
11
  } | undefined;
12
12
  devUI: "disabled" | "enabled";
@@ -18,7 +18,7 @@ export declare function getEDConfig(dir?: string): import("zod").SafeParseReturn
18
18
  enabled: boolean;
19
19
  uploads: "proxy" | "remote";
20
20
  plugins: "proxy" | "remote";
21
- theme: "proxy" | "remote" | "copy";
21
+ theme: "copy" | "proxy" | "remote";
22
22
  endpoints: Record<string, string>;
23
23
  } | undefined;
24
24
  devUI: "disabled" | "enabled";
@@ -31,7 +31,7 @@ export declare function getEDConfigUnwrapped(dir?: string): {
31
31
  enabled: boolean;
32
32
  uploads: "proxy" | "remote";
33
33
  plugins: "proxy" | "remote";
34
- theme: "proxy" | "remote" | "copy";
34
+ theme: "copy" | "proxy" | "remote";
35
35
  endpoints: Record<string, string>;
36
36
  } | undefined;
37
37
  devUI: "disabled" | "enabled";
@@ -6,7 +6,7 @@ export declare function parseConfig(config: any): import("zod").SafeParseReturnT
6
6
  enabled: boolean;
7
7
  uploads: "proxy" | "remote";
8
8
  plugins: "proxy" | "remote";
9
- theme: "proxy" | "remote" | "copy";
9
+ theme: "copy" | "proxy" | "remote";
10
10
  endpoints: Record<string, string>;
11
11
  } | undefined;
12
12
  devUI: "disabled" | "enabled";
@@ -18,7 +18,7 @@ export declare function parseConfig(config: any): import("zod").SafeParseReturnT
18
18
  enabled: boolean;
19
19
  uploads: "proxy" | "remote";
20
20
  plugins: "proxy" | "remote";
21
- theme: "proxy" | "remote" | "copy";
21
+ theme: "copy" | "proxy" | "remote";
22
22
  endpoints: Record<string, string>;
23
23
  } | undefined;
24
24
  devUI: "disabled" | "enabled";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eddev",
3
- "version": "0.2.0-beta.17",
3
+ "version": "0.2.0-beta.18",
4
4
  "main": "./index.js",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -5,7 +5,6 @@ import { Fragment } from "react"
5
5
  type Props = ParsedRouteTags
6
6
 
7
7
  export function PageMeta(props: Props) {
8
- console.log("Meta", props)
9
8
  return (
10
9
  <Head>
11
10
  {props.title?.map((tag, i) => (
@@ -21,8 +21,6 @@ function MyApp({ Component, pageProps }: AppProps) {
21
21
 
22
22
  const View = manifest[pageProps.view]
23
23
 
24
- // console.log("PAGE", pageProps)
25
-
26
24
  return (
27
25
  <ServerlessAppDataProvider value={appData}>
28
26
  <NextRouter data={pageProps} path={route.pathname}>