Skip to content

Commit 76c44e9

Browse files
authored
chore: suggest correct folder on package creation (#11738)
Now, on package generation the process folder followed by package base name as suggested as folder. With this PR, it is corrected to the package base name.
1 parent 5b42cc2 commit 76c44e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/create-package/create-package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const generateFilesContent = async (
112112
await processFiles(destDir, vars, testSetup);
113113

114114
console.log("\nPackage successfully created!\nNext steps:\n");
115-
console.log(`$ cd ${destDir}`);
115+
console.log(`$ cd ${packageBaseName}`);
116116

117117
try {
118118
const userAgent = parser(process.env.npm_config_user_agent);

0 commit comments

Comments
 (0)