@storm-software/workspace-tools 1.7.14 → 1.7.15

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.7.14",
3
+ "version": "1.7.15",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
@@ -602687,15 +602687,16 @@ async function runExecutor(options8, context) {
602687
602687
  }
602688
602688
  return acc;
602689
602689
  }, []);
602690
- const thirdPartyDependencies = (0, import_get_extra_dependencies.getExtraDependencies)(
602691
- context.projectName,
602692
- context.projectGraph
602693
- );
602694
- for (const tpd of thirdPartyDependencies) {
602695
- const packageConfig = tpd.node.data;
602696
- if (packageConfig?.packageName) {
602697
- options8.external.push(packageConfig.packageName);
602698
- externalDependencies.push(tpd);
602690
+ if (!options8.bundle) {
602691
+ for (const thirdPartyDependency of (0, import_get_extra_dependencies.getExtraDependencies)(
602692
+ context.projectName,
602693
+ context.projectGraph
602694
+ )) {
602695
+ const packageConfig = thirdPartyDependency.node.data;
602696
+ if (packageConfig?.packageName) {
602697
+ options8.external.push(packageConfig.packageName);
602698
+ externalDependencies.push(thirdPartyDependency);
602699
+ }
602699
602700
  }
602700
602701
  }
602701
602702
  const projectGraph = await (0, import_project_graph.buildProjectGraphWithoutDaemon)();
@@ -602767,6 +602768,7 @@ async function runExecutor(options8, context) {
602767
602768
  outputPath,
602768
602769
  "package.json"
602769
602770
  );
602771
+ console.log(`\u26A1 Writing package.json file to: ${packageJsonPath}`);
602770
602772
  (0, import_fs6.writeFileSync)(
602771
602773
  packageJsonPath,
602772
602774
  await format2(JSON.stringify(packageJson), {