@eui/tools 4.21.2 → 4.21.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -233,7 +233,7 @@ const getLocalPackageCompositeDeps = (pkg) => {
233
233
  }
234
234
 
235
235
  if (tools.isFileExists(pkgJsonFile)) {
236
- console.log(`found ${pkgJsonFile}, parsing...`);
236
+ tools.logInfo(`found ${pkgJsonFile}, parsing...`);
237
237
  }
238
238
 
239
239
  return tools.getJsonFileContent(pkgJsonFile) || {};
@@ -88,10 +88,10 @@ module.exports.init = (pkg) => {
88
88
  })
89
89
 
90
90
  // REMOVE YARN.LOCK
91
- .then(() => {
92
- utils.tools.logInfo('Removing yarn.lock');
93
- return utils.tools.remove(path.join(process.cwd(), 'yarn.lock'));
94
- })
91
+ // .then(() => {
92
+ // utils.tools.logInfo('Removing yarn.lock');
93
+ // return utils.tools.remove(path.join(process.cwd(), 'yarn.lock'));
94
+ // })
95
95
 
96
96
  .catch((e) => {
97
97
  throw e;