alepha 0.20.4 → 0.20.5

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/dist/bin/index.js CHANGED
File without changes
@@ -1121,7 +1121,7 @@ declare const buildOptions: _$alepha.Atom<_$alepha.TObject<{
1121
1121
  *
1122
1122
  * @default "standalone"
1123
1123
  */
1124
- display: _$alepha.TOptional<_$alepha.TUnsafe<"standalone" | "fullscreen" | "minimal-ui" | "browser">>;
1124
+ display: _$alepha.TOptional<_$alepha.TUnsafe<"browser" | "standalone" | "fullscreen" | "minimal-ui">>;
1125
1125
  /**
1126
1126
  * Enable offline support via service worker.
1127
1127
  *
@@ -1198,9 +1198,9 @@ type DevOptions = Static<typeof devOptions.schema>;
1198
1198
  declare class AppEntryProvider {
1199
1199
  protected readonly fs: FileSystemProvider;
1200
1200
  protected readonly options: Readonly<{
1201
- style?: string | undefined;
1202
- browser?: string | undefined;
1203
1201
  server?: string | undefined;
1202
+ browser?: string | undefined;
1203
+ style?: string | undefined;
1204
1204
  }>;
1205
1205
  protected readonly serverEntries: readonly ["main.server.ts", "main.server.tsx", "main.ts", "main.tsx"];
1206
1206
  protected readonly browserEntries: readonly ["main.browser.ts", "main.browser.tsx", "main.ts", "main.tsx"];
@@ -2015,15 +2015,15 @@ declare class BuildCommand {
2015
2015
  } | undefined;
2016
2016
  } | undefined;
2017
2017
  vercel?: {
2018
+ projectName?: string | undefined;
2019
+ orgId?: string | undefined;
2020
+ projectId?: string | undefined;
2018
2021
  config?: {
2019
2022
  crons?: {
2020
2023
  path: string;
2021
2024
  schedule: string;
2022
2025
  }[] | undefined;
2023
2026
  } | undefined;
2024
- projectName?: string | undefined;
2025
- orgId?: string | undefined;
2026
- projectId?: string | undefined;
2027
2027
  } | undefined;
2028
2028
  cloudflare?: {
2029
2029
  config?: Record<string, any> | undefined;
@@ -2040,7 +2040,7 @@ declare class BuildCommand {
2040
2040
  shortName?: string | undefined;
2041
2041
  themeColor?: string | undefined;
2042
2042
  backgroundColor?: string | undefined;
2043
- display?: "standalone" | "fullscreen" | "minimal-ui" | "browser" | undefined;
2043
+ display?: "browser" | "standalone" | "fullscreen" | "minimal-ui" | undefined;
2044
2044
  offline?: boolean | undefined;
2045
2045
  name: string;
2046
2046
  } | undefined;
@@ -627,8 +627,8 @@ declare class CliProvider {
627
627
  protected readonly asker: Asker;
628
628
  protected readonly envUtils: EnvUtils;
629
629
  protected readonly options: Readonly<{
630
- description?: string | undefined;
631
630
  name?: string | undefined;
631
+ description?: string | undefined;
632
632
  argv?: string[] | undefined;
633
633
  }>;
634
634
  protected get name(): string;