We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c583d0d commit ff39bf8Copy full SHA for ff39bf8
packages/launchpad/src/dev/dump.ts
@@ -16,6 +16,8 @@ function generateProjectHash(projectPath: string): string {
16
const hash = crypto.createHash('md5').update(resolvedPath).digest('hex')
17
const projectName = path.basename(resolvedPath)
18
const result = `${projectName}_${hash.slice(0, 8)}`
19
+
20
+ return result
21
}
22
23
export interface DumpOptions {
0 commit comments