Skip to content

Commit

Permalink
chore: format code.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Jan 19, 2021
1 parent fe152d1 commit e7be345
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions packages/tsbb/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export * from './utils/clearConsole'
export * from './utils/executeCommand'
export * from './utils/getFileDirectory'
export * from './utils'
export * from './utils/moverDir'
export * from './command/create'
export * from './utils/clearConsole';
export * from './utils/executeCommand';
export * from './utils/getFileDirectory';
export * from './utils';
export * from './utils/moverDir';
export * from './command/create';
2 changes: 1 addition & 1 deletion packages/tsbb/src/utils/getFileDirectory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ async function getFiles(rootPath: string, outpuPath: string, files: IFileDirStat

export async function getFileDirectory(rootPath: string, outpuPath?: string) {
return await getFiles(rootPath, outpuPath, [], rootPath);
};
}
2 changes: 1 addition & 1 deletion packages/tsbb/src/utils/installDeps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ export async function installDeps(targetDir: string, command: string) {
const args = [];
args.push('install');
await executeCommand(command, args, targetDir);
};
}

0 comments on commit e7be345

Please sign in to comment.