@cellajs/create-cella 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/create.js +3 -2
package/package.json
CHANGED
package/src/create.js
CHANGED
|
@@ -155,13 +155,14 @@ export async function create({
|
|
|
155
155
|
const relativePath = relative(originalCwd, targetFolder);
|
|
156
156
|
|
|
157
157
|
console.info('now go to your project using:')
|
|
158
|
-
console.info(colors.cyan(` cd
|
|
158
|
+
console.info(colors.cyan(` cd ${relativePath}`)); // Adding './' to make it clear it's a relative path
|
|
159
159
|
console.info()
|
|
160
160
|
}
|
|
161
161
|
console.info(`${needsCd ? 'then ' : ''}quick start with:`)
|
|
162
162
|
console.info(colors.cyan(` ${packageManager} quick`))
|
|
163
163
|
console.info()
|
|
164
164
|
|
|
165
|
-
console.info('
|
|
165
|
+
console.info('Check out the readme to get started: /README.md')
|
|
166
166
|
console.info(`Enjoy building ${projectName} using cella! 🎉`)
|
|
167
|
+
console.info()
|
|
167
168
|
}
|