@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 +12 -0
- package/index.js +1 -1
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +1 -1
- package/src/executors/tsup-browser/executor.js +1 -1
- package/src/executors/tsup-neutral/executor.js +1 -1
- package/src/executors/tsup-node/executor.js +1 -1
- package/src/utils/index.js +1 -1
package/package.json
CHANGED
|
@@ -465185,7 +465185,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
465185
465185
|
(0, import_node_path4.dirname)(options8.tsConfig)
|
|
465186
465186
|
);
|
|
465187
465187
|
tsConfig.options.pathsBasePath = workspaceRoot;
|
|
465188
|
-
if (config?.compilerOptions?.incremental && !tsConfig
|
|
465188
|
+
if ((config?.compilerOptions?.incremental || tsConfig?.options?.incremental) && !tsConfig?.options.tsBuildInfoFile) {
|
|
465189
465189
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
465190
465190
|
}
|
|
465191
465191
|
return tsConfig;
|
|
@@ -458993,7 +458993,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458993
458993
|
(0, import_node_path4.dirname)(options8.tsConfig)
|
|
458994
458994
|
);
|
|
458995
458995
|
tsConfig.options.pathsBasePath = workspaceRoot;
|
|
458996
|
-
if (config?.compilerOptions?.incremental && !tsConfig
|
|
458996
|
+
if ((config?.compilerOptions?.incremental || tsConfig?.options?.incremental) && !tsConfig?.options.tsBuildInfoFile) {
|
|
458997
458997
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
458998
458998
|
}
|
|
458999
458999
|
return tsConfig;
|
|
@@ -458993,7 +458993,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458993
458993
|
(0, import_node_path4.dirname)(options8.tsConfig)
|
|
458994
458994
|
);
|
|
458995
458995
|
tsConfig.options.pathsBasePath = workspaceRoot;
|
|
458996
|
-
if (config?.compilerOptions?.incremental && !tsConfig
|
|
458996
|
+
if ((config?.compilerOptions?.incremental || tsConfig?.options?.incremental) && !tsConfig?.options.tsBuildInfoFile) {
|
|
458997
458997
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
458998
458998
|
}
|
|
458999
458999
|
return tsConfig;
|
|
@@ -458993,7 +458993,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458993
458993
|
(0, import_node_path4.dirname)(options8.tsConfig)
|
|
458994
458994
|
);
|
|
458995
458995
|
tsConfig.options.pathsBasePath = workspaceRoot;
|
|
458996
|
-
if (config?.compilerOptions?.incremental && !tsConfig
|
|
458996
|
+
if ((config?.compilerOptions?.incremental || tsConfig?.options?.incremental) && !tsConfig?.options.tsBuildInfoFile) {
|
|
458997
458997
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
458998
458998
|
}
|
|
458999
458999
|
return tsConfig;
|
package/src/utils/index.js
CHANGED
|
@@ -463886,7 +463886,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
463886
463886
|
(0, import_node_path5.dirname)(options8.tsConfig)
|
|
463887
463887
|
);
|
|
463888
463888
|
tsConfig.options.pathsBasePath = workspaceRoot;
|
|
463889
|
-
if (config?.compilerOptions?.incremental && !tsConfig
|
|
463889
|
+
if ((config?.compilerOptions?.incremental || tsConfig?.options?.incremental) && !tsConfig?.options.tsBuildInfoFile) {
|
|
463890
463890
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
463891
463891
|
}
|
|
463892
463892
|
return tsConfig;
|