@mintlify/previewing 4.0.555 → 4.0.556

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,7 +1,7 @@
1
1
  export declare const INSTALL_PATH: string;
2
2
  export declare const HOME_DIR: string;
3
3
  export declare const DOT_MINTLIFY: string;
4
- export declare const DOT_MINTLIFY_LAST = ".mintlify-last";
4
+ export declare const DOT_MINTLIFY_LAST: string;
5
5
  export declare const MINT_PATH: string;
6
6
  export declare const VERSION_PATH: string;
7
7
  export declare const CLIENT_PATH: string;
package/dist/constants.js CHANGED
@@ -5,7 +5,7 @@ import * as url from 'url';
5
5
  export const INSTALL_PATH = url.fileURLToPath(new URL('.', import.meta.url));
6
6
  export const HOME_DIR = os.homedir();
7
7
  export const DOT_MINTLIFY = path.join(HOME_DIR, '.mintlify');
8
- export const DOT_MINTLIFY_LAST = '.mintlify-last';
8
+ export const DOT_MINTLIFY_LAST = path.join(HOME_DIR, '.mintlify-last');
9
9
  export const MINT_PATH = path.join(DOT_MINTLIFY, 'mint');
10
10
  export const VERSION_PATH = path.join(MINT_PATH, 'mint-version.txt');
11
11
  export const CLIENT_PATH = path.join(MINT_PATH, 'apps', 'client');