@storm-software/workspace-tools 1.62.26 → 1.62.27
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/README.md +1 -1
- package/index.js +9 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +9 -2
- package/src/executors/tsup-browser/executor.js +9 -2
- package/src/executors/tsup-neutral/executor.js +9 -2
- package/src/executors/tsup-node/executor.js +9 -2
- package/src/utils/index.js +9 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.62.27 (2024-03-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Update method of parsing the tsconfig json values for dts build ([4bb4d0fe](https://github.com/storm-software/storm-ops/commit/4bb4d0fe))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.62.26 (2024-03-01)
|
|
2
14
|
|
|
3
15
|
|
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
16
16
|
|
|
17
17
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
|
|
18
18
|
|
|
19
|
-
[](https://prettier.io/)
|
|
20
20
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
21
21
|
|
|
22
22
|
> [!IMPORTANT]
|
package/index.js
CHANGED
|
@@ -474932,7 +474932,14 @@ ${options8.banner}
|
|
|
474932
474932
|
}
|
|
474933
474933
|
};
|
|
474934
474934
|
function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
474935
|
-
|
|
474935
|
+
let rawTsconfig;
|
|
474936
|
+
try {
|
|
474937
|
+
rawTsconfig = loadTsConfig2({
|
|
474938
|
+
filepath: options8.tsConfig
|
|
474939
|
+
});
|
|
474940
|
+
} catch (_4) {
|
|
474941
|
+
rawTsconfig = null;
|
|
474942
|
+
}
|
|
474936
474943
|
if (!rawTsconfig) {
|
|
474937
474944
|
throw new Error(
|
|
474938
474945
|
`Unable to find ${findFileName(options8.tsConfig) || "tsconfig.json"} in ${(0, import_node_path2.dirname)(
|
|
@@ -474945,7 +474952,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
474945
474952
|
...rawTsconfig.data,
|
|
474946
474953
|
compilerOptions: {
|
|
474947
474954
|
...rawTsconfig.data?.compilerOptions,
|
|
474948
|
-
tsBuildInfoFile: rawTsconfig.compilerOptions?.incremental ? (0, import_devkit3.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
474955
|
+
tsBuildInfoFile: rawTsconfig.data?.compilerOptions?.incremental ? (0, import_devkit3.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
474949
474956
|
outDir: outputPath,
|
|
474950
474957
|
noEmit: false,
|
|
474951
474958
|
emitDeclarationOnly: true,
|