@storm-software/workspace-tools 1.182.3 → 1.182.4
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/README.md +1 -1
- package/index.js +2 -12
- package/meta.json +1 -1
- package/package.json +2 -1
- package/src/executors/rollup/executor.js +2 -12
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/index.js
CHANGED
|
@@ -230028,24 +230028,14 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, config, dependenc
|
|
|
230028
230028
|
if (!projectGraph) {
|
|
230029
230029
|
throw new Error(`Cannot find project graph.`);
|
|
230030
230030
|
}
|
|
230031
|
-
if (!process.env.NX_TASK_TARGET_TARGET) {
|
|
230032
|
-
throw new Error(
|
|
230033
|
-
`NX_TASK_TARGET_TARGET is not set. Please set it in your environment.`
|
|
230034
|
-
);
|
|
230035
|
-
}
|
|
230036
|
-
if (!process.env.NX_TASK_TARGET_CONFIGURATION) {
|
|
230037
|
-
throw new Error(
|
|
230038
|
-
`NX_TASK_TARGET_CONFIGURATION is not set. Please set it in your environment.`
|
|
230039
|
-
);
|
|
230040
|
-
}
|
|
230041
230031
|
if (!dependencies && !global.NX_GRAPH_CREATION) {
|
|
230042
230032
|
const result = (0, import_buildable_libs_utils.calculateProjectBuildableDependencies)(
|
|
230043
230033
|
void 0,
|
|
230044
230034
|
projectGraph,
|
|
230045
230035
|
config.workspaceRoot,
|
|
230046
230036
|
projectNode.name,
|
|
230047
|
-
process.env.NX_TASK_TARGET_TARGET,
|
|
230048
|
-
process.env.NX_TASK_TARGET_CONFIGURATION,
|
|
230037
|
+
process.env.NX_TASK_TARGET_TARGET || "build",
|
|
230038
|
+
process.env.NX_TASK_TARGET_CONFIGURATION || "production",
|
|
230049
230039
|
true
|
|
230050
230040
|
);
|
|
230051
230041
|
dependencies = result.dependencies;
|