@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/package.json
CHANGED
|
@@ -453424,7 +453424,14 @@ ${options8.banner}
|
|
|
453424
453424
|
}
|
|
453425
453425
|
};
|
|
453426
453426
|
function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
453427
|
-
|
|
453427
|
+
let rawTsconfig;
|
|
453428
|
+
try {
|
|
453429
|
+
rawTsconfig = loadTsConfig2({
|
|
453430
|
+
filepath: options8.tsConfig
|
|
453431
|
+
});
|
|
453432
|
+
} catch (_4) {
|
|
453433
|
+
rawTsconfig = null;
|
|
453434
|
+
}
|
|
453428
453435
|
if (!rawTsconfig) {
|
|
453429
453436
|
throw new Error(
|
|
453430
453437
|
`Unable to find ${findFileName(options8.tsConfig) || "tsconfig.json"} in ${(0, import_node_path2.dirname)(
|
|
@@ -453437,7 +453444,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
453437
453444
|
...rawTsconfig.data,
|
|
453438
453445
|
compilerOptions: {
|
|
453439
453446
|
...rawTsconfig.data?.compilerOptions,
|
|
453440
|
-
tsBuildInfoFile: rawTsconfig.compilerOptions?.incremental ? (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
453447
|
+
tsBuildInfoFile: rawTsconfig.data?.compilerOptions?.incremental ? (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
453441
453448
|
outDir: outputPath,
|
|
453442
453449
|
noEmit: false,
|
|
453443
453450
|
emitDeclarationOnly: true,
|
|
@@ -447240,7 +447240,14 @@ ${options8.banner}
|
|
|
447240
447240
|
}
|
|
447241
447241
|
};
|
|
447242
447242
|
function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
447243
|
-
|
|
447243
|
+
let rawTsconfig;
|
|
447244
|
+
try {
|
|
447245
|
+
rawTsconfig = loadTsConfig2({
|
|
447246
|
+
filepath: options8.tsConfig
|
|
447247
|
+
});
|
|
447248
|
+
} catch (_4) {
|
|
447249
|
+
rawTsconfig = null;
|
|
447250
|
+
}
|
|
447244
447251
|
if (!rawTsconfig) {
|
|
447245
447252
|
throw new Error(
|
|
447246
447253
|
`Unable to find ${findFileName(options8.tsConfig) || "tsconfig.json"} in ${(0, import_node_path2.dirname)(
|
|
@@ -447253,7 +447260,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
447253
447260
|
...rawTsconfig.data,
|
|
447254
447261
|
compilerOptions: {
|
|
447255
447262
|
...rawTsconfig.data?.compilerOptions,
|
|
447256
|
-
tsBuildInfoFile: rawTsconfig.compilerOptions?.incremental ? (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
447263
|
+
tsBuildInfoFile: rawTsconfig.data?.compilerOptions?.incremental ? (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
447257
447264
|
outDir: outputPath,
|
|
447258
447265
|
noEmit: false,
|
|
447259
447266
|
emitDeclarationOnly: true,
|
|
@@ -447240,7 +447240,14 @@ ${options8.banner}
|
|
|
447240
447240
|
}
|
|
447241
447241
|
};
|
|
447242
447242
|
function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
447243
|
-
|
|
447243
|
+
let rawTsconfig;
|
|
447244
|
+
try {
|
|
447245
|
+
rawTsconfig = loadTsConfig2({
|
|
447246
|
+
filepath: options8.tsConfig
|
|
447247
|
+
});
|
|
447248
|
+
} catch (_4) {
|
|
447249
|
+
rawTsconfig = null;
|
|
447250
|
+
}
|
|
447244
447251
|
if (!rawTsconfig) {
|
|
447245
447252
|
throw new Error(
|
|
447246
447253
|
`Unable to find ${findFileName(options8.tsConfig) || "tsconfig.json"} in ${(0, import_node_path2.dirname)(
|
|
@@ -447253,7 +447260,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
447253
447260
|
...rawTsconfig.data,
|
|
447254
447261
|
compilerOptions: {
|
|
447255
447262
|
...rawTsconfig.data?.compilerOptions,
|
|
447256
|
-
tsBuildInfoFile: rawTsconfig.compilerOptions?.incremental ? (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
447263
|
+
tsBuildInfoFile: rawTsconfig.data?.compilerOptions?.incremental ? (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
447257
447264
|
outDir: outputPath,
|
|
447258
447265
|
noEmit: false,
|
|
447259
447266
|
emitDeclarationOnly: true,
|
|
@@ -447240,7 +447240,14 @@ ${options8.banner}
|
|
|
447240
447240
|
}
|
|
447241
447241
|
};
|
|
447242
447242
|
function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
447243
|
-
|
|
447243
|
+
let rawTsconfig;
|
|
447244
|
+
try {
|
|
447245
|
+
rawTsconfig = loadTsConfig2({
|
|
447246
|
+
filepath: options8.tsConfig
|
|
447247
|
+
});
|
|
447248
|
+
} catch (_4) {
|
|
447249
|
+
rawTsconfig = null;
|
|
447250
|
+
}
|
|
447244
447251
|
if (!rawTsconfig) {
|
|
447245
447252
|
throw new Error(
|
|
447246
447253
|
`Unable to find ${findFileName(options8.tsConfig) || "tsconfig.json"} in ${(0, import_node_path2.dirname)(
|
|
@@ -447253,7 +447260,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
447253
447260
|
...rawTsconfig.data,
|
|
447254
447261
|
compilerOptions: {
|
|
447255
447262
|
...rawTsconfig.data?.compilerOptions,
|
|
447256
|
-
tsBuildInfoFile: rawTsconfig.compilerOptions?.incremental ? (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
447263
|
+
tsBuildInfoFile: rawTsconfig.data?.compilerOptions?.incremental ? (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
447257
447264
|
outDir: outputPath,
|
|
447258
447265
|
noEmit: false,
|
|
447259
447266
|
emitDeclarationOnly: true,
|
package/src/utils/index.js
CHANGED
|
@@ -457502,7 +457502,14 @@ ${options8.banner}
|
|
|
457502
457502
|
}
|
|
457503
457503
|
};
|
|
457504
457504
|
function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
457505
|
-
|
|
457505
|
+
let rawTsconfig;
|
|
457506
|
+
try {
|
|
457507
|
+
rawTsconfig = loadTsConfig2({
|
|
457508
|
+
filepath: options8.tsConfig
|
|
457509
|
+
});
|
|
457510
|
+
} catch (_4) {
|
|
457511
|
+
rawTsconfig = null;
|
|
457512
|
+
}
|
|
457506
457513
|
if (!rawTsconfig) {
|
|
457507
457514
|
throw new Error(
|
|
457508
457515
|
`Unable to find ${findFileName(options8.tsConfig) || "tsconfig.json"} in ${(0, import_node_path2.dirname)(
|
|
@@ -457515,7 +457522,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
|
|
|
457515
457522
|
...rawTsconfig.data,
|
|
457516
457523
|
compilerOptions: {
|
|
457517
457524
|
...rawTsconfig.data?.compilerOptions,
|
|
457518
|
-
tsBuildInfoFile: rawTsconfig.compilerOptions?.incremental ? (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
457525
|
+
tsBuildInfoFile: rawTsconfig.data?.compilerOptions?.incremental ? (0, import_devkit2.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
|
|
457519
457526
|
outDir: outputPath,
|
|
457520
457527
|
noEmit: false,
|
|
457521
457528
|
emitDeclarationOnly: true,
|