@akanjs/config 1.0.1 → 1.0.3
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/package.json +1 -1
- package/src/akanConfig.d.ts +1 -1
- package/src/types.d.ts +1 -1
package/package.json
CHANGED
package/src/akanConfig.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare const getAppConfig: (appRoot: string, props: RunnerProps, tsconfi
|
|
|
8
8
|
}) => Promise<AppConfigResult>;
|
|
9
9
|
export declare const makeLibConfig: (config: DeepPartial<LibConfigResult>, props: RunnerProps) => LibConfigResult;
|
|
10
10
|
export declare const getLibConfig: (libRoot: string, props: RunnerProps) => Promise<LibConfigResult>;
|
|
11
|
-
export declare const getNextConfig: (configImp: AppConfig, appData: any) => NextConfig | import("./nextConfig").NextConfigFn
|
|
11
|
+
export declare const getNextConfig: (configImp: AppConfig, appData: any) => NextConfig | import("./nextConfig").NextConfigFn;
|
|
12
12
|
export declare const getCapacitorConfig: (configImp: AppConfig, appInfo: AppScanResult) => AppConfigResult;
|
|
13
13
|
export declare const makeDockerfile: (type: "backend" | "frontend", config: DeepPartial<DockerConfig>, props: RunnerProps) => DockerConfig;
|
|
14
14
|
export declare const increaseBuildNum: (appRoot: string, props: RunnerProps, tsconfig: {
|
package/src/types.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ export interface AppConfigResult {
|
|
|
33
33
|
};
|
|
34
34
|
frontend: {
|
|
35
35
|
docker: DockerConfig;
|
|
36
|
-
nextConfig: NextConfig | NextConfigFn
|
|
36
|
+
nextConfig: NextConfig | NextConfigFn;
|
|
37
37
|
routes?: {
|
|
38
38
|
basePath?: string;
|
|
39
39
|
domains: {
|