@storm-software/workspace-tools 1.60.15 → 1.60.17
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 +24 -0
- package/index.js +4 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +4 -2
- package/src/executors/tsup-browser/executor.js +4 -2
- package/src/executors/tsup-neutral/executor.js +4 -2
- package/src/executors/tsup-node/executor.js +4 -2
- package/src/utils/index.js +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.60.17 (2024-02-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Added `target` and `module` values to declarations build options ([165e8c17](https://github.com/storm-software/storm-ops/commit/165e8c17))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.60.16 (2024-02-23)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **workspace-tools:** Update `libs` to use full names in `compilerOptions` for declarations build ([ced91edc](https://github.com/storm-software/storm-ops/commit/ced91edc))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.60.15 (2024-02-23)
|
|
2
26
|
|
|
3
27
|
|
package/index.js
CHANGED
|
@@ -486651,13 +486651,15 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
486651
486651
|
{
|
|
486652
486652
|
...config,
|
|
486653
486653
|
compilerOptions: {
|
|
486654
|
-
...config
|
|
486654
|
+
...config?.compilerOptions,
|
|
486655
486655
|
entry: {
|
|
486656
486656
|
[removeExtension(context.main).replace(workspaceRoot, "").replace(context.sourceRoot, "")]: context.main
|
|
486657
486657
|
},
|
|
486658
486658
|
outDir: outputPath,
|
|
486659
486659
|
rootDir: workspaceRoot,
|
|
486660
486660
|
baseUrl: workspaceRoot,
|
|
486661
|
+
target: "esnext",
|
|
486662
|
+
module: "esnext",
|
|
486661
486663
|
moduleResolution: "node",
|
|
486662
486664
|
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
486663
486665
|
noEmit: false,
|
|
@@ -486674,7 +486676,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
486674
486676
|
(0, import_node_path5.dirname)(options8.tsConfig)
|
|
486675
486677
|
);
|
|
486676
486678
|
tsConfig.options.pathsBasePath = workspaceRoot;
|
|
486677
|
-
if (
|
|
486679
|
+
if (config?.compilerOptions?.incremental && !tsConfig.options.tsBuildInfoFile) {
|
|
486678
486680
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit3.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
486679
486681
|
}
|
|
486680
486682
|
return tsConfig;
|