@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/CHANGELOG.md +7 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +11 -9
package/package.json
CHANGED
|
@@ -602687,15 +602687,16 @@ async function runExecutor(options8, context) {
|
|
|
602687
602687
|
}
|
|
602688
602688
|
return acc;
|
|
602689
602689
|
}, []);
|
|
602690
|
-
|
|
602691
|
-
|
|
602692
|
-
|
|
602693
|
-
|
|
602694
|
-
|
|
602695
|
-
|
|
602696
|
-
|
|
602697
|
-
|
|
602698
|
-
|
|
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), {
|