Skip to content

Commit

Permalink
chore: rephrase logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgeorge007 committed Aug 9, 2020
1 parent d84fe6f commit 4fe8108
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/commands/basic/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const addDeps = async (deps, { dev }) => {
await exec(
`npm install ${installFlag} ${deps.join(' ')}`,
`Installing ${deps.join(', ')}`,
'Dependencies are successfully installed',
'Dependencies were successfully installed',
{
cwd: templateDir,
},
Expand Down Expand Up @@ -152,7 +152,7 @@ const addDeps = async (deps, { dev }) => {
if (modules.length) {
await exec(
`npm install --save ${modulesWithPrefix.join(' ')}`,
`Installing ${modulesWithPrefix.join(', ')}`,
`Installing Nuxt.js modules`,
'Succesfully installed opted Nuxt.js modules',
{
cwd: templateDir,
Expand All @@ -175,7 +175,7 @@ const addDeps = async (deps, { dev }) => {
// Install buildModules as a devDep
await exec(
`npm install --save-dev ${buildModulesWithPrefix.join(' ')}`,
`Installing ${buildModulesWithPrefix.join(', ')}`,
`Installing Nuxt.js buildModules`,
'Succesfully installed opted Nuxt.js buildModules',
{
cwd: templateDir,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/deploy/surge.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const deployToSurge = async () => {
await exec(
`npm install`,
'Installing dependencies',
'Dependencies are successfully installed',
'Dependencies were successfully installed',
{
cwd: 'client',
},
Expand Down

0 comments on commit 4fe8108

Please sign in to comment.