@storm-software/workspace-tools 1.166.1 → 1.167.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.166.1",
3
+ "version": "1.167.0",
4
4
  "type": "commonjs",
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "repository": {
@@ -397,12 +397,12 @@ var createDependencies = (_, context) => {
397
397
  }
398
398
  const { packages: cargoPackages } = metadata;
399
399
  const dependencies = [];
400
- console.log(`Cargo packages found: ${JSON.stringify(cargoPackages)}`);
401
400
  for (const pkg of cargoPackages) {
402
401
  if (context.projects[pkg.name]) {
402
+ console.debug(`Local Cargo package found: ${pkg.name}`);
403
403
  for (const deps of pkg.dependencies) {
404
404
  if (!cargoPackages.find((p) => p.name === deps.name)) {
405
- console.log(
405
+ console.debug(
406
406
  `Dependency ${deps.name} not found in the cargo metadata.`
407
407
  );
408
408
  continue;
@@ -420,8 +420,6 @@ var createDependencies = (_, context) => {
420
420
  }
421
421
  }
422
422
  }
423
- } else {
424
- console.log(`Project ${pkg.name} not found in the context.`);
425
423
  }
426
424
  }
427
425
  return dependencies;