@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/package.json
CHANGED
|
@@ -465160,13 +465160,15 @@ 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
|
},
|
|
465167
465167
|
outDir: outputPath,
|
|
465168
465168
|
rootDir: workspaceRoot,
|
|
465169
465169
|
baseUrl: workspaceRoot,
|
|
465170
|
+
target: "esnext",
|
|
465171
|
+
module: "esnext",
|
|
465170
465172
|
moduleResolution: "node",
|
|
465171
465173
|
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
465172
465174
|
noEmit: false,
|
|
@@ -465183,7 +465185,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
465183
465185
|
(0, import_node_path4.dirname)(options8.tsConfig)
|
|
465184
465186
|
);
|
|
465185
465187
|
tsConfig.options.pathsBasePath = workspaceRoot;
|
|
465186
|
-
if (
|
|
465188
|
+
if (config?.compilerOptions?.incremental && !tsConfig.options.tsBuildInfoFile) {
|
|
465187
465189
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
465188
465190
|
}
|
|
465189
465191
|
return tsConfig;
|
|
@@ -458968,13 +458968,15 @@ 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
|
},
|
|
458975
458975
|
outDir: outputPath,
|
|
458976
458976
|
rootDir: workspaceRoot,
|
|
458977
458977
|
baseUrl: workspaceRoot,
|
|
458978
|
+
target: "esnext",
|
|
458979
|
+
module: "esnext",
|
|
458978
458980
|
moduleResolution: "node",
|
|
458979
458981
|
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
458980
458982
|
noEmit: false,
|
|
@@ -458991,7 +458993,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458991
458993
|
(0, import_node_path4.dirname)(options8.tsConfig)
|
|
458992
458994
|
);
|
|
458993
458995
|
tsConfig.options.pathsBasePath = workspaceRoot;
|
|
458994
|
-
if (
|
|
458996
|
+
if (config?.compilerOptions?.incremental && !tsConfig.options.tsBuildInfoFile) {
|
|
458995
458997
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
458996
458998
|
}
|
|
458997
458999
|
return tsConfig;
|
|
@@ -458968,13 +458968,15 @@ 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
|
},
|
|
458975
458975
|
outDir: outputPath,
|
|
458976
458976
|
rootDir: workspaceRoot,
|
|
458977
458977
|
baseUrl: workspaceRoot,
|
|
458978
|
+
target: "esnext",
|
|
458979
|
+
module: "esnext",
|
|
458978
458980
|
moduleResolution: "node",
|
|
458979
458981
|
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
458980
458982
|
noEmit: false,
|
|
@@ -458991,7 +458993,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458991
458993
|
(0, import_node_path4.dirname)(options8.tsConfig)
|
|
458992
458994
|
);
|
|
458993
458995
|
tsConfig.options.pathsBasePath = workspaceRoot;
|
|
458994
|
-
if (
|
|
458996
|
+
if (config?.compilerOptions?.incremental && !tsConfig.options.tsBuildInfoFile) {
|
|
458995
458997
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
458996
458998
|
}
|
|
458997
458999
|
return tsConfig;
|
|
@@ -458968,13 +458968,15 @@ 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
|
},
|
|
458975
458975
|
outDir: outputPath,
|
|
458976
458976
|
rootDir: workspaceRoot,
|
|
458977
458977
|
baseUrl: workspaceRoot,
|
|
458978
|
+
target: "esnext",
|
|
458979
|
+
module: "esnext",
|
|
458978
458980
|
moduleResolution: "node",
|
|
458979
458981
|
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
458980
458982
|
noEmit: false,
|
|
@@ -458991,7 +458993,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
458991
458993
|
(0, import_node_path4.dirname)(options8.tsConfig)
|
|
458992
458994
|
);
|
|
458993
458995
|
tsConfig.options.pathsBasePath = workspaceRoot;
|
|
458994
|
-
if (
|
|
458996
|
+
if (config?.compilerOptions?.incremental && !tsConfig.options.tsBuildInfoFile) {
|
|
458995
458997
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
458996
458998
|
}
|
|
458997
458999
|
return tsConfig;
|
package/src/utils/index.js
CHANGED
|
@@ -463861,13 +463861,15 @@ 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
|
},
|
|
463868
463868
|
outDir: outputPath,
|
|
463869
463869
|
rootDir: workspaceRoot,
|
|
463870
463870
|
baseUrl: workspaceRoot,
|
|
463871
|
+
target: "esnext",
|
|
463872
|
+
module: "esnext",
|
|
463871
463873
|
moduleResolution: "node",
|
|
463872
463874
|
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
463873
463875
|
noEmit: false,
|
|
@@ -463884,7 +463886,7 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
463884
463886
|
(0, import_node_path5.dirname)(options8.tsConfig)
|
|
463885
463887
|
);
|
|
463886
463888
|
tsConfig.options.pathsBasePath = workspaceRoot;
|
|
463887
|
-
if (
|
|
463889
|
+
if (config?.compilerOptions?.incremental && !tsConfig.options.tsBuildInfoFile) {
|
|
463888
463890
|
tsConfig.options.tsBuildInfoFile = (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo");
|
|
463889
463891
|
}
|
|
463890
463892
|
return tsConfig;
|