Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #10 from thiagodesouza/master
Browse files Browse the repository at this point in the history
chore(v4): add emojis to cli informations
  • Loading branch information
thrsouza authored Jan 19, 2020
2 parents f915368 + a61f63f commit afdf887
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"private": true,
"version": "3.0.1",
"workspaces": [
"packages/neutron-cli",
"packages/neutron-start-react-native-template",
Expand Down
9 changes: 6 additions & 3 deletions packages/neutron-cli/src/commands/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,17 @@ class CreateCommand {
try {
PrintNewLine();

PrintMessage('Creating App project structure...', MessageType.INFO);
PrintMessage(
'✨ Creating App project structure...',
MessageType.DEFAULT,
);
PrintDivider();

await startTemplateResolver(technologyType, appName);

PrintNewLine();
PrintMessage(
'The project was created successfuly!',
'🚀 The project was created successfuly!',
MessageType.SUCCESS,
);
PrintDivider();
Expand All @@ -80,7 +83,7 @@ class CreateCommand {
const manager = system.which('yarn') ? 'yarn' : 'npm run';

PrintMessage(
'We suggest that you begin by typing:',
'👉 We suggest that you begin by typing:',
MessageType.DEFAULT,
);
PrintNewLine();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ module.exports = async (toolbox) => {

PrintNewLine();
PrintMessage(
'Installing packages required by your application in production...',
MessageType.INFO,
'📦 Installing packages required by your application in production...',
MessageType.DEFAULT,
);
await packageManager.install(appName, dependencies, false);

PrintNewLine();
PrintMessage(
'Installing packages that are only needed for local development and testing...',
MessageType.INFO,
'📦 Installing packages that are only needed for local development and testing...',
MessageType.DEFAULT,
);
await packageManager.install(appName, devDependencies, true);
};
Expand Down

0 comments on commit afdf887

Please sign in to comment.