@storm-software/workspace-tools 1.60.14 → 1.60.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 +12 -0
- package/index.js +1 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +1 -0
- package/src/executors/tsup-browser/executor.js +1 -0
- package/src/executors/tsup-neutral/executor.js +1 -0
- package/src/executors/tsup-node/executor.js +1 -0
- package/src/utils/index.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.60.15 (2024-02-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Update module resolution on declarations build ([bd96644d](https://github.com/storm-software/storm-ops/commit/bd96644d))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.60.14 (2024-02-23)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -486659,6 +486659,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
486659
486659
|
rootDir: workspaceRoot,
|
|
486660
486660
|
baseUrl: workspaceRoot,
|
|
486661
486661
|
moduleResolution: "node",
|
|
486662
|
+
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
486662
486663
|
noEmit: false,
|
|
486663
486664
|
esModuleInterop: true,
|
|
486664
486665
|
downlevelIteration: true,
|