@storm-software/workspace-tools 1.60.16 → 1.60.18
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 +2 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +2 -2
- package/src/executors/tsup-browser/executor.js +2 -2
- package/src/executors/tsup-neutral/executor.js +2 -2
- package/src/executors/tsup-node/executor.js +2 -2
- package/src/utils/index.js +2 -2
package/package.json
CHANGED
|
@@ -465160,7 +465160,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
465160
465160
|
{
|
|
465161
465161
|
...config,
|
|
465162
465162
|
compilerOptions: {
|
|
465163
|
-
...config
|
|
465163
|
+
...config?.compilerOptions,
|
|
465164
465164
|
entry: {
|
|
465165
465165
|
[removeExtension(context.main).replace(workspaceRoot, "").replace(context.sourceRoot, "")]: context.main
|
|
465166
465166
|
},
|
|
@@ -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 (
|
|
465188
|
+
if (config?.compilerOptions?.incremental && !tsConfig.options.tsBuildInfoFile) {
|
|
465189
465189
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
465190
465190
|
}
|
|
465191
465191
|
return tsConfig;
|
|
@@ -458968,7 +458968,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458968
458968
|
{
|
|
458969
458969
|
...config,
|
|
458970
458970
|
compilerOptions: {
|
|
458971
|
-
...config
|
|
458971
|
+
...config?.compilerOptions,
|
|
458972
458972
|
entry: {
|
|
458973
458973
|
[removeExtension(context.main).replace(workspaceRoot, "").replace(context.sourceRoot, "")]: context.main
|
|
458974
458974
|
},
|
|
@@ -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 (
|
|
458996
|
+
if (config?.compilerOptions?.incremental && !tsConfig.options.tsBuildInfoFile) {
|
|
458997
458997
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
458998
458998
|
}
|
|
458999
458999
|
return tsConfig;
|
|
@@ -458968,7 +458968,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458968
458968
|
{
|
|
458969
458969
|
...config,
|
|
458970
458970
|
compilerOptions: {
|
|
458971
|
-
...config
|
|
458971
|
+
...config?.compilerOptions,
|
|
458972
458972
|
entry: {
|
|
458973
458973
|
[removeExtension(context.main).replace(workspaceRoot, "").replace(context.sourceRoot, "")]: context.main
|
|
458974
458974
|
},
|
|
@@ -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 (
|
|
458996
|
+
if (config?.compilerOptions?.incremental && !tsConfig.options.tsBuildInfoFile) {
|
|
458997
458997
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
458998
458998
|
}
|
|
458999
458999
|
return tsConfig;
|
|
@@ -458968,7 +458968,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458968
458968
|
{
|
|
458969
458969
|
...config,
|
|
458970
458970
|
compilerOptions: {
|
|
458971
|
-
...config
|
|
458971
|
+
...config?.compilerOptions,
|
|
458972
458972
|
entry: {
|
|
458973
458973
|
[removeExtension(context.main).replace(workspaceRoot, "").replace(context.sourceRoot, "")]: context.main
|
|
458974
458974
|
},
|
|
@@ -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 (
|
|
458996
|
+
if (config?.compilerOptions?.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
|
@@ -463861,7 +463861,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
463861
463861
|
{
|
|
463862
463862
|
...config,
|
|
463863
463863
|
compilerOptions: {
|
|
463864
|
-
...config
|
|
463864
|
+
...config?.compilerOptions,
|
|
463865
463865
|
entry: {
|
|
463866
463866
|
[removeExtension(context.main).replace(workspaceRoot, "").replace(context.sourceRoot, "")]: context.main
|
|
463867
463867
|
},
|
|
@@ -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 (
|
|
463889
|
+
if (config?.compilerOptions?.incremental && !tsConfig.options.tsBuildInfoFile) {
|
|
463890
463890
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
463891
463891
|
}
|
|
463892
463892
|
return tsConfig;
|