-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(commands/init): throw meaningful error if project folder already exists #164
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,13 +46,23 @@ exports.handler = function ({ reporter, name, template }) { | |
|
||
const basename = name.split('.')[0] | ||
const tasks = new TaskList([ | ||
{ | ||
title: 'Checking project existence', | ||
task: async (ctx, task) => { | ||
const projectPath = path.resolve(process.cwd(), basename) | ||
const exists = await fs.pathExists(projectPath) | ||
if (exists) { | ||
throw new Error(`Couldn't initialize project. Project with name ${basename} already exists in ${projectPath}. Use different <name> or rename existing project folder.`) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. First stab on meaningful error message. Happy to add better wording here if anyone has strong opinions :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. LGTM! |
||
} | ||
} | ||
}, | ||
{ | ||
title: 'Clone template', | ||
task: async (ctx, task) => { | ||
task.output = `Cloning ${template} into ${basename}...` | ||
|
||
const repo = await clone(template, basename, { shallow: true }) | ||
console.log(`Template cloned to ${basename}`) | ||
// console.log(`Template cloned to ${basename}`) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How would you feel about removing it entirely instead of leaving a comment here @izqui ? :) Also, would you mind enlighten me how having this console.log causes multiple outputs of a totally different task? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Your are absolutely right, forgot to remove it after testing. Fixed: #165
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Wow.. I had no idea. Thanks! |
||
} | ||
}, | ||
{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ctx
andtask
aren't really used here, but have been provided in other tasks that didn't use them as well. I just stuck to your style. Let me know if you want me to remove those.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets keep them for consistency :)