Skip to content

Commit

Permalink
v1.0.0-alpha.6
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillemGarciaDev committed Nov 12, 2023
1 parent 58fb72b commit 4ffeca8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "walle-cli",
"version": "1.0.0-alpha.5",
"version": "1.0.0-alpha.6",
"description": "Your CLI project organizer",
"bin": {
"walle": "build/index.js"
Expand Down
12 changes: 5 additions & 7 deletions src/lib/core/commands/make/make.command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,11 @@ export class MakeCommand implements IMakeCommand {
async execute(args: string[]): Promise<void> {
const { name, triggers, manual, entryPoint } = this.depurate(args);

// await Spinner.wait({
// startMessage: `Making ${manual.ref} ${name}`,
// stopMessage: `Prototype ${name} created!`,
// callback: () => this.makePrototype(name, manual, triggers, entryPoint),
// });

this.makePrototype(name, manual, triggers, entryPoint);
await Spinner.wait({
startMessage: `Making ${manual.ref} ${name}`,
stopMessage: `Prototype ${name} created!`,
callback: () => this.makePrototype(name, manual, triggers, entryPoint),
});

Logger.note({ type: SeverityLevels.DEFAULT, title: "Next steps", message: `Start coding in ${entryPoint}/${name}` });
}
Expand Down

0 comments on commit 4ffeca8

Please sign in to comment.