@storm-software/workspace-tools 1.52.13 → 1.52.15

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,15 @@
1
+ ## 1.52.15 (2024-01-29)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Remove the workspace root from the entry path ([b3916264](https://github.com/storm-software/storm-ops/commit/b3916264))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
1
13
  ## 1.52.13 (2024-01-29)
2
14
 
3
15
 
package/index.js CHANGED
@@ -133243,7 +133243,9 @@ var runTsupBuild = async (context, config, options) => {
133243
133243
  const getConfigOptions = {
133244
133244
  ...options,
133245
133245
  main: context.main,
133246
- entry: { [removeExtension(context.main).replace(context.sourceRoot, "")]: context.main },
133246
+ entry: {
133247
+ [removeExtension(context.main).replace(config.workspaceRoot, "").replace(context.sourceRoot, "")]: context.main
133248
+ },
133247
133249
  define: {
133248
133250
  __STORM_CONFIG: JSON.stringify(stormEnv)
133249
133251
  },
@@ -133311,7 +133313,9 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options) {
133311
133313
  ...config,
133312
133314
  compilerOptions: {
133313
133315
  ...config.compilerOptions,
133314
- entry: { [removeExtension(context.main).replace(context.sourceRoot, "")]: context.main },
133316
+ entry: {
133317
+ [removeExtension(context.main).replace(workspaceRoot, "").replace(context.sourceRoot, "")]: context.main
133318
+ },
133315
133319
  outDir: outputPath,
133316
133320
  rootDir: workspaceRoot,
133317
133321
  baseUrl: workspaceRoot,