@storm-software/workspace-tools 1.209.2 → 1.210.1

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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## 1.210.1 (2024-12-26)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **workspace-tools:** Resolve project naming issue with `tsup` plugin
6
+ ([3cda4391](https://github.com/storm-software/storm-ops/commit/3cda4391))
7
+
8
+ ## 1.210.0 (2024-12-25)
9
+
10
+ ### Features
11
+
12
+ - **workspace-tools:** Added results logging to `tsup` plugin
13
+ ([adca1139](https://github.com/storm-software/storm-ops/commit/adca1139))
14
+
1
15
  ## 1.209.2 (2024-12-23)
2
16
 
3
17
  ### Bug Fixes
package/meta.json CHANGED
@@ -24797,7 +24797,7 @@
24797
24797
  "format": "esm"
24798
24798
  },
24799
24799
  "packages/workspace-tools/src/plugins/typescript/tsup.ts": {
24800
- "bytes": 5309,
24800
+ "bytes": 5349,
24801
24801
  "imports": [
24802
24802
  {
24803
24803
  "path": "@nx/devkit",
@@ -68548,13 +68548,13 @@
68548
68548
  "entryPoint": "packages/workspace-tools/src/plugins/typescript/tsup.ts",
68549
68549
  "inputs": {
68550
68550
  "packages/workspace-tools/src/plugins/typescript/tsup.ts": {
68551
- "bytesInOutput": 5044
68551
+ "bytesInOutput": 5080
68552
68552
  },
68553
68553
  "packages/workspace-tools/src/utils/project-tags.ts": {
68554
68554
  "bytesInOutput": 2559
68555
68555
  }
68556
68556
  },
68557
- "bytes": 8681
68557
+ "bytes": 8717
68558
68558
  },
68559
68559
  "dist/packages/workspace-tools/src/utils/index.js": {
68560
68560
  "imports": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.209.2",
3
+ "version": "1.210.1",
4
4
  "type": "commonjs",
5
5
  "description": "Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.",
6
6
  "repository": {
@@ -157,7 +157,7 @@ Please add it to your dependencies by running "pnpm add tsup -D --filter="${pack
157
157
  );
158
158
  const nxJson = (0, import_nx_json.readNxJson)(context2.workspaceRoot);
159
159
  const targets = (0, import_package_json.readTargetsFromPackageJson)(packageJson, nxJson);
160
- let relativeRoot = projectRoot.replace(context2.workspaceRoot, "").replaceAll("\\", "/");
160
+ let relativeRoot = projectRoot.replaceAll("\\", "/").replace(context2.workspaceRoot, "");
161
161
  if (relativeRoot.startsWith("/")) {
162
162
  relativeRoot = relativeRoot.slice(1);
163
163
  }
@@ -207,6 +207,7 @@ Please add it to your dependencies by running "pnpm add tsup -D --filter="${pack
207
207
  projects: {
208
208
  [project.name]: {
209
209
  ...project,
210
+ root: relativeRoot,
210
211
  targets
211
212
  }
212
213
  }
@@ -232,9 +233,9 @@ function createProjectFromPackageJsonNextToProjectJson(projectJsonPath, packageJ
232
233
  return {
233
234
  targets: {},
234
235
  tags: [],
236
+ name: name2,
235
237
  ...nx,
236
238
  ...projectJson,
237
- name: name2,
238
239
  root
239
240
  };
240
241
  }