@storm-software/workspace-tools 1.182.4 → 1.182.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 +8 -1
- package/README.md +51 -8
- package/index.js +1 -4
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/rollup/executor.js +1 -4
package/package.json
CHANGED
|
@@ -202470,16 +202470,13 @@ async function createRollupOptions(options, context, config) {
|
|
|
202470
202470
|
if (!context.targetName) {
|
|
202471
202471
|
throw new Error("Nx target name was not found");
|
|
202472
202472
|
}
|
|
202473
|
-
if (!context.configurationName) {
|
|
202474
|
-
throw new Error("Nx configuration name was not found");
|
|
202475
|
-
}
|
|
202476
202473
|
const { dependencies } = (0, import_buildable_libs_utils2.calculateProjectBuildableDependencies)(
|
|
202477
202474
|
context.taskGraph,
|
|
202478
202475
|
context.projectGraph,
|
|
202479
202476
|
context.root,
|
|
202480
202477
|
context.projectName,
|
|
202481
202478
|
context.targetName,
|
|
202482
|
-
context.configurationName,
|
|
202479
|
+
context.configurationName ?? "development",
|
|
202483
202480
|
true
|
|
202484
202481
|
);
|
|
202485
202482
|
const rollupConfig = await withRollupConfig(
|