@storm-software/workspace-tools 1.30.5 → 1.30.6
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/index.js +3 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +3 -0
- package/src/executors/tsup-browser/executor.js +3 -0
- package/src/executors/tsup-neutral/executor.js +3 -0
- package/src/executors/tsup-node/executor.js +3 -0
package/package.json
CHANGED
|
@@ -117347,6 +117347,9 @@ ${Object.keys(options).map(
|
|
|
117347
117347
|
}, []);
|
|
117348
117348
|
const implicitDependencies = context.projectsConfigurations.projects[context.projectName].implicitDependencies;
|
|
117349
117349
|
const internalDependencies = [];
|
|
117350
|
+
const projectConfigs = getProjectConfigurations();
|
|
117351
|
+
console.log("Project Configs:");
|
|
117352
|
+
console.log(projectConfigs);
|
|
117350
117353
|
if (implicitDependencies && implicitDependencies.length > 0) {
|
|
117351
117354
|
options.external = implicitDependencies.reduce(
|
|
117352
117355
|
(ret, key) => {
|
|
@@ -117378,6 +117378,9 @@ ${Object.keys(options).map(
|
|
|
117378
117378
|
}, []);
|
|
117379
117379
|
const implicitDependencies = context.projectsConfigurations.projects[context.projectName].implicitDependencies;
|
|
117380
117380
|
const internalDependencies = [];
|
|
117381
|
+
const projectConfigs = getProjectConfigurations();
|
|
117382
|
+
console.log("Project Configs:");
|
|
117383
|
+
console.log(projectConfigs);
|
|
117381
117384
|
if (implicitDependencies && implicitDependencies.length > 0) {
|
|
117382
117385
|
options.external = implicitDependencies.reduce(
|
|
117383
117386
|
(ret, key) => {
|
|
@@ -117378,6 +117378,9 @@ ${Object.keys(options).map(
|
|
|
117378
117378
|
}, []);
|
|
117379
117379
|
const implicitDependencies = context.projectsConfigurations.projects[context.projectName].implicitDependencies;
|
|
117380
117380
|
const internalDependencies = [];
|
|
117381
|
+
const projectConfigs = getProjectConfigurations();
|
|
117382
|
+
console.log("Project Configs:");
|
|
117383
|
+
console.log(projectConfigs);
|
|
117381
117384
|
if (implicitDependencies && implicitDependencies.length > 0) {
|
|
117382
117385
|
options.external = implicitDependencies.reduce(
|
|
117383
117386
|
(ret, key) => {
|
|
@@ -117378,6 +117378,9 @@ ${Object.keys(options).map(
|
|
|
117378
117378
|
}, []);
|
|
117379
117379
|
const implicitDependencies = context.projectsConfigurations.projects[context.projectName].implicitDependencies;
|
|
117380
117380
|
const internalDependencies = [];
|
|
117381
|
+
const projectConfigs = getProjectConfigurations();
|
|
117382
|
+
console.log("Project Configs:");
|
|
117383
|
+
console.log(projectConfigs);
|
|
117381
117384
|
if (implicitDependencies && implicitDependencies.length > 0) {
|
|
117382
117385
|
options.external = implicitDependencies.reduce(
|
|
117383
117386
|
(ret, key) => {
|