@@ -33,7 +33,7 @@ export function getSocketUserDir(): string {
3333 return normalizePath (
3434 path . join (
3535 os . homedir ( ) ,
36- /*@__INLINE__ */ require ( '.. /constants/paths' ) . DOT_SOCKET_DIR ,
36+ /*@__INLINE__ */ require ( './constants/paths' ) . DOT_SOCKET_DIR ,
3737 ) ,
3838 )
3939}
@@ -45,7 +45,7 @@ export function getSocketAppDir(appName: string): string {
4545 return normalizePath (
4646 path . join (
4747 getSocketUserDir ( ) ,
48- `${ /*@__INLINE__ */ require ( '.. /constants/socket' ) . SOCKET_APP_PREFIX } ${ appName } ` ,
48+ `${ /*@__INLINE__ */ require ( './constants/socket' ) . SOCKET_APP_PREFIX } ${ appName } ` ,
4949 ) ,
5050 )
5151}
@@ -61,7 +61,7 @@ export function getSocketCacacheDir(): string {
6161 return normalizePath (
6262 path . join (
6363 getSocketUserDir ( ) ,
64- `${ /*@__INLINE__ */ require ( '.. /constants/socket' ) . SOCKET_APP_PREFIX } cacache` ,
64+ `${ /*@__INLINE__ */ require ( './constants/socket' ) . SOCKET_APP_PREFIX } cacache` ,
6565 ) ,
6666 )
6767}
@@ -73,7 +73,7 @@ export function getSocketDlxDir(): string {
7373 return normalizePath (
7474 path . join (
7575 getSocketUserDir ( ) ,
76- `${ /*@__INLINE__ */ require ( '.. /constants/socket' ) . SOCKET_APP_PREFIX } ${ /*@__INLINE__ */ require ( '. ./constants/socket' ) . SOCKET_DLX_APP_NAME } ` ,
76+ `${ /*@__INLINE__ */ require ( './constants/socket' ) . SOCKET_APP_PREFIX } ${ /*@__INLINE__ */ require ( './constants/socket' ) . SOCKET_DLX_APP_NAME } ` ,
7777 ) ,
7878 )
7979}
@@ -85,7 +85,7 @@ export function getSocketAppCacheDir(appName: string): string {
8585 return normalizePath (
8686 path . join (
8787 getSocketAppDir ( appName ) ,
88- /*@__INLINE__ */ require ( '.. /constants/paths' ) . CACHE_DIR ,
88+ /*@__INLINE__ */ require ( './constants/paths' ) . CACHE_DIR ,
8989 ) ,
9090 )
9191}
@@ -97,7 +97,7 @@ export function getSocketAppCacheTtlDir(appName: string): string {
9797 return normalizePath (
9898 path . join (
9999 getSocketAppCacheDir ( appName ) ,
100- /*@__INLINE__ */ require ( '.. /constants/paths' ) . CACHE_TTL_DIR ,
100+ /*@__INLINE__ */ require ( './constants/paths' ) . CACHE_TTL_DIR ,
101101 ) ,
102102 )
103103}
@@ -107,7 +107,7 @@ export function getSocketAppCacheTtlDir(appName: string): string {
107107 */
108108export function getSocketCliDir ( ) : string {
109109 return getSocketAppDir (
110- /*@__INLINE__ */ require ( '.. /constants/socket' ) . SOCKET_CLI_APP_NAME ,
110+ /*@__INLINE__ */ require ( './constants/socket' ) . SOCKET_CLI_APP_NAME ,
111111 )
112112}
113113
@@ -116,7 +116,7 @@ export function getSocketCliDir(): string {
116116 */
117117export function getSocketRegistryDir ( ) : string {
118118 return getSocketAppDir (
119- /*@__INLINE__ */ require ( '.. /constants/socket' ) . SOCKET_REGISTRY_APP_NAME ,
119+ /*@__INLINE__ */ require ( './constants/socket' ) . SOCKET_REGISTRY_APP_NAME ,
120120 )
121121}
122122
@@ -127,9 +127,9 @@ export function getSocketRegistryGithubCacheDir(): string {
127127 return normalizePath (
128128 path . join (
129129 getSocketAppCacheTtlDir (
130- /*@__INLINE__ */ require ( '.. /constants/socket' ) . SOCKET_REGISTRY_APP_NAME ,
130+ /*@__INLINE__ */ require ( './constants/socket' ) . SOCKET_REGISTRY_APP_NAME ,
131131 ) ,
132- /*@__INLINE__ */ require ( '.. /constants/github' ) . CACHE_GITHUB_DIR ,
132+ /*@__INLINE__ */ require ( './constants/github' ) . CACHE_GITHUB_DIR ,
133133 ) ,
134134 )
135135}
0 commit comments