@storm-software/workspace-tools 1.43.12 → 1.43.13
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 +7 -3
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +7 -3
- package/src/executors/tsup-browser/executor.js +7 -3
- package/src/executors/tsup-neutral/executor.js +7 -3
- package/src/executors/tsup-node/executor.js +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.43.12](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.11...workspace-tools-v1.43.12) (2024-01-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Added tsup build logging ([35d8dae](https://github.com/storm-software/storm-ops/commit/35d8dae8dddc91627c5fcda73f01c16618aaafc6))
|
|
7
|
+
|
|
1
8
|
## [1.43.11](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.10...workspace-tools-v1.43.11) (2024-01-17)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -16007,14 +16007,14 @@ var require_parse_target_string = __commonJS({
|
|
|
16007
16007
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16008
16008
|
exports.targetToTargetString = exports.parseTargetString = void 0;
|
|
16009
16009
|
var nx_1 = require_nx();
|
|
16010
|
-
var { readCachedProjectGraph
|
|
16010
|
+
var { readCachedProjectGraph, splitTarget, splitByColons } = (0, nx_1.requireNx)();
|
|
16011
16011
|
splitTarget = splitTarget ?? require("nx/src/utils/split-target").splitTarget;
|
|
16012
16012
|
splitByColons = splitByColons ?? ((s) => s.split(":"));
|
|
16013
16013
|
function parseTargetString(targetString, projectGraphOrCtx) {
|
|
16014
16014
|
let projectGraph = projectGraphOrCtx && "projectGraph" in projectGraphOrCtx ? projectGraphOrCtx.projectGraph : projectGraphOrCtx;
|
|
16015
16015
|
if (!projectGraph) {
|
|
16016
16016
|
try {
|
|
16017
|
-
projectGraph =
|
|
16017
|
+
projectGraph = readCachedProjectGraph();
|
|
16018
16018
|
} catch (e) {
|
|
16019
16019
|
projectGraph = { nodes: {} };
|
|
16020
16020
|
}
|
|
@@ -137854,9 +137854,13 @@ ${externalDependencies.map((dep) => {
|
|
|
137854
137854
|
console.log("Conditional before checking entry points");
|
|
137855
137855
|
if (options.generatePackageJson !== false) {
|
|
137856
137856
|
console.log("Checking entry points");
|
|
137857
|
-
const projectGraph = (0, import_devkit3.
|
|
137857
|
+
const projectGraph = await (0, import_devkit3.createProjectGraphAsync)({
|
|
137858
|
+
exitOnError: true
|
|
137859
|
+
});
|
|
137860
|
+
console.log("Read project graph");
|
|
137858
137861
|
packageJson.dependencies = void 0;
|
|
137859
137862
|
for (const externalDependency of externalDependencies) {
|
|
137863
|
+
console.log(externalDependency);
|
|
137860
137864
|
const packageConfig = externalDependency.node.data;
|
|
137861
137865
|
if (packageConfig?.packageName && !!(projectGraph.externalNodes[externalDependency.node.name]?.type === "npm")) {
|
|
137862
137866
|
const { packageName, version } = packageConfig;
|