@storm-software/workspace-tools 1.60.18 → 1.60.19

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.60.19 (2024-02-24)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Resolve issue with incremental build ([50538773](https://github.com/storm-software/storm-ops/commit/50538773))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
1
13
  ## 1.60.18 (2024-02-24)
2
14
 
3
15
 
package/index.js CHANGED
@@ -486676,7 +486676,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
486676
486676
  (0, import_node_path5.dirname)(options8.tsConfig)
486677
486677
  );
486678
486678
  tsConfig.options.pathsBasePath = workspaceRoot;
486679
- if (config?.compilerOptions?.incremental && !tsConfig.options.tsBuildInfoFile) {
486679
+ if ((config?.compilerOptions?.incremental || tsConfig?.options?.incremental) && !tsConfig?.options.tsBuildInfoFile) {
486680
486680
  tsConfig.options.tsBuildInfoFile = (0, import_devkit3.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
486681
486681
  }
486682
486682
  return tsConfig;