@storm-software/workspace-tools 1.62.1 → 1.62.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,17 @@
1
+ ## 1.62.2 (2024-02-26)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Remove `entry` from the tsconfig for dts build ([628a4034](https://github.com/storm-software/storm-ops/commit/628a4034))
7
+
8
+ - **workspace-tools:** Removed updated workspace root from compiler config ([f6c09bad](https://github.com/storm-software/storm-ops/commit/f6c09bad))
9
+
10
+
11
+ ### ❤️ Thank You
12
+
13
+ - Patrick Sullivan
14
+
1
15
  ## 1.62.1 (2024-02-26)
2
16
 
3
17
 
package/index.js CHANGED
@@ -484259,7 +484259,6 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
484259
484259
  ...config,
484260
484260
  compilerOptions: {
484261
484261
  ...config?.compilerOptions,
484262
- include: ["**/*"],
484263
484262
  outDir: outputPath,
484264
484263
  noEmit: false,
484265
484264
  esModuleInterop: true,
@@ -484269,7 +484268,8 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
484269
484268
  declaration: true,
484270
484269
  declarationMap: true,
484271
484270
  declarationDir: (0, import_devkit3.joinPathFragments)(workspaceRoot, "tmp", ".tsup", "declaration")
484272
- }
484271
+ },
484272
+ include: ["**/*"]
484273
484273
  },
484274
484274
  import_typescript.sys,
484275
484275
  (0, import_node_path5.dirname)(options8.tsConfig)