@storm-software/workspace-tools 1.36.0 → 1.36.2

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,18 @@
1
+ ## [1.36.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.36.0...workspace-tools-v1.36.1) (2024-01-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **linting-tools:** Call linting functions in parallel ([0aa300f](https://github.com/storm-software/storm-ops/commit/0aa300f2c6dd7a67589025ffe512197535222064))
7
+ * **workspace-tools:** Resolve issue with builds ([d136a22](https://github.com/storm-software/storm-ops/commit/d136a22dc88ba57105c8c95205d6115e23ede51e))
8
+
9
+ # [1.36.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.35.5...workspace-tools-v1.36.0) (2024-01-05)
10
+
11
+
12
+ ### Features
13
+
14
+ * **workspace-tools:** Added dynamic tsup build configuration ([c9932d9](https://github.com/storm-software/storm-ops/commit/c9932d9157ec23b4a460d52faf4988e1f748c84e))
15
+
1
16
  ## [1.35.5](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.35.4...workspace-tools-v1.35.5) (2024-01-01)
2
17
 
3
18
 
package/index.js CHANGED
@@ -117634,7 +117634,8 @@ ${externalDependencies.map((dep) => {
117634
117634
  packageJson.dependencies[packageName] = "latest";
117635
117635
  }
117636
117636
  });
117637
- const distPaths = _isFunction(options.getConfig) ? [""] : Object.keys(options.getConfig).map((key) => `${key}/`);
117637
+ console.log(JSON.stringify(options.getConfig));
117638
+ const distPaths = !options?.getConfig || _isFunction(options.getConfig) ? [""] : Object.keys(options.getConfig).map((key) => `${key}/`);
117638
117639
  packageJson.type = "module";
117639
117640
  if (distPaths.length > 1) {
117640
117641
  packageJson.exports ??= {
@@ -118235,7 +118236,7 @@ var tsNodeBuildExecutorFn = (options, context, config) => {
118235
118236
  var applyDefaultOptions3 = (options) => {
118236
118237
  return {
118237
118238
  ...applyDefaultOptions({ plugins: [], ...options, platform: "node" }),
118238
- getConfig: nodeConfig,
118239
+ getConfig: { "dist": nodeConfig },
118239
118240
  transports: ["pino-pretty", "pino-loki"]
118240
118241
  };
118241
118242
  };