File tree Expand file tree Collapse file tree
packages/cli-kit/src/public/node Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -369,7 +369,7 @@ export function isDirectorySync(path: string): boolean {
369369 * @returns The size of the file in bytes.
370370 */
371371export async function fileSize ( path : string ) : Promise < number > {
372- outputDebug ( outputContent `Getting the size of file file at ${ outputToken . path ( path ) } ...` )
372+ outputDebug ( outputContent `Getting the size of file at ${ outputToken . path ( path ) } ...` )
373373 return ( await fsStat ( path ) ) . size
374374}
375375
@@ -380,7 +380,7 @@ export async function fileSize(path: string): Promise<number> {
380380 * @returns The size of the file in bytes.
381381 */
382382export function fileSizeSync ( path : string ) : number {
383- outputDebug ( outputContent `Sync-getting the size of file file at ${ outputToken . path ( path ) } ...` )
383+ outputDebug ( outputContent `Sync-getting the size of file at ${ outputToken . path ( path ) } ...` )
384384 return fsStatSync ( path ) . size
385385}
386386
You can’t perform that action at this time.
0 commit comments