Skip to content

Commit

Permalink
Add informing msg to initBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
jalal246 committed Feb 4, 2020
1 parent f18dd39 commit 9d4e105
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/config/initBuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ const packageSorter = require("package-sorter");
const {
getPackagesPath,
extractPackagesInfo,
cleanBuildDir
cleanBuildDir,
msg
} = require("../utils");

/**
Expand Down Expand Up @@ -43,7 +44,9 @@ function initBuild() {
/**
* Sort packages before bump to production.
*/
const sorted = packageSorter({ packages: packagesInfo });
const sorted = packageSorter(packagesInfo);

msg("Done initiating build");

return sorted;
}
Expand Down

0 comments on commit 9d4e105

Please sign in to comment.