🎨 Correct document format

This commit is contained in:
Tw93
2023-06-28 15:28:56 +08:00
parent 3b2f553f07
commit 481537624d
5 changed files with 6 additions and 7 deletions

2
bin/utils/info.ts vendored
View File

@@ -6,7 +6,7 @@ import chalk from 'chalk';
// Generates an identifier based on the given URL.
export function getIdentifier(url: string) {
const postFixHash = crypto.createHash('md5').update(url).digest('hex').substring(0, 6);
return `pake-${postFixHash}`;
return `com.pake.${postFixHash}`;
}
export async function promptText(message: string, initial?: string): Promise<string> {