@mintlify/previewing 4.0.620 → 4.0.622
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/constants.d.ts +2 -2
- package/dist/constants.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
package/dist/constants.d.ts
CHANGED
|
@@ -10,8 +10,8 @@ export declare const NEXT_ROUTER_SERVER_PATH: string;
|
|
|
10
10
|
export declare const NEXT_CONFIG_PATH: string;
|
|
11
11
|
export declare const NEXT_PUBLIC_PATH: string;
|
|
12
12
|
export declare const NEXT_PROPS_PATH: string;
|
|
13
|
-
export declare const MINT_CLIENT_RELEASES_CLOUDFRONT_URL = "https://
|
|
14
|
-
export declare const TARGET_MINT_VERSION_URL = "https://
|
|
13
|
+
export declare const MINT_CLIENT_RELEASES_CLOUDFRONT_URL = "https://releases.mintlify.com";
|
|
14
|
+
export declare const TARGET_MINT_VERSION_URL = "https://releases.mintlify.com/mint-version.txt";
|
|
15
15
|
export declare const TAR_PATH: string;
|
|
16
16
|
export declare const CMD_EXEC_PATH: string;
|
|
17
17
|
export declare const SUPPORTED_MEDIA_EXTENSIONS: string[];
|
package/dist/constants.js
CHANGED
|
@@ -15,7 +15,7 @@ export const NEXT_ROUTER_SERVER_PATH = path.join(NEXT_DIST_SERVER_PATH, 'lib', '
|
|
|
15
15
|
export const NEXT_CONFIG_PATH = path.join(CLIENT_PATH, '.next', 'required-server-files.json');
|
|
16
16
|
export const NEXT_PUBLIC_PATH = path.join(CLIENT_PATH, 'public');
|
|
17
17
|
export const NEXT_PROPS_PATH = path.join(CLIENT_PATH, 'src', '_props');
|
|
18
|
-
export const MINT_CLIENT_RELEASES_CLOUDFRONT_URL = 'https://
|
|
18
|
+
export const MINT_CLIENT_RELEASES_CLOUDFRONT_URL = 'https://releases.mintlify.com';
|
|
19
19
|
export const TARGET_MINT_VERSION_URL = `${MINT_CLIENT_RELEASES_CLOUDFRONT_URL}/mint-version.txt`;
|
|
20
20
|
export const TAR_PATH = path.join(DOT_MINTLIFY, `mint.tar.gz`);
|
|
21
21
|
// command execution location
|