@storm-software/workspace-tools 1.207.2 → 1.207.3

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,10 @@
1
+ ## 1.207.3 (2024-12-23)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **workspace-tools:** Use relative routes in `tsup` plugin
6
+ ([3de402c5](https://github.com/storm-software/storm-ops/commit/3de402c5))
7
+
1
8
  ## 1.207.2 (2024-12-23)
2
9
 
3
10
  ### 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": 3886,
24800
+ "bytes": 3896,
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": 3853
68551
+ "bytesInOutput": 3863
68552
68552
  },
68553
68553
  "packages/workspace-tools/src/utils/project-tags.ts": {
68554
68554
  "bytesInOutput": 2559
68555
68555
  }
68556
68556
  },
68557
- "bytes": 7488
68557
+ "bytes": 7498
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.207.2",
3
+ "version": "1.207.3",
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": {
@@ -158,7 +158,7 @@ Please add it to your dependencies by running "pnpm add tsup -D --filter="${pack
158
158
  targets["build-base"] = {
159
159
  cache: true,
160
160
  inputs: [file, "typescript", "^production"],
161
- outputs: [`${relativeRoot}/dist`],
161
+ outputs: [`${relativeRoot}/dist/**/*`],
162
162
  executor: "nx:run-commands",
163
163
  dependsOn: ["clean", "^build"],
164
164
  options: {
@@ -169,7 +169,7 @@ Please add it to your dependencies by running "pnpm add tsup -D --filter="${pack
169
169
  targets.build = {
170
170
  cache: true,
171
171
  inputs: [file, "typescript", "^production"],
172
- outputs: [`dist/${relativeRoot}`],
172
+ outputs: [`dist/${relativeRoot}/**/*`],
173
173
  executor: "nx:run-commands",
174
174
  dependsOn: ["build-base"],
175
175
  options: {