@storm-software/workspace-tools 1.174.1 → 1.175.0

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.175.0 (2024-09-06)
2
+
3
+ ### Features
4
+
5
+ - **k8s-tools:** Added extra fields onto the released container's `meta.json`
6
+ file ([14356536](https://github.com/storm-software/storm-ops/commit/14356536))
7
+
8
+ ### Bug Fixes
9
+
10
+ - **workspace-tools:** Resolved the duplicate export name issue
11
+ ([f2586335](https://github.com/storm-software/storm-ops/commit/f2586335))
12
+
1
13
  ## 1.174.1 (2024-09-06)
2
14
 
3
15
  ### Bug Fixes
package/index.js CHANGED
@@ -829721,12 +829721,10 @@ async function* rollupExecutorFn(options, context, config) {
829721
829721
  options.additionalEntryPoints?.map(
829722
829722
  (entry) => correctPaths2((0, import_path.join)(workspaceRoot3, entry))
829723
829723
  ) ?? []
829724
- ).map(
829725
- (entry) => entry.replace(
829726
- workspaceRoot3.endsWith("/") ? `${workspaceRoot3}/` : workspaceRoot3,
829727
- ""
829728
- )
829729
- );
829724
+ ).map((entry) => {
829725
+ const formatted = entry.replace(workspaceRoot3, "");
829726
+ return formatted.endsWith("/") ? formatted.slice(-1) : formatted;
829727
+ });
829730
829728
  }
829731
829729
  writeDebug2(
829732
829730
  `\u{1F4E6} Running Storm Rollup build process on the ${context?.projectName} project`,