@storm-software/workspace-tools 1.62.30 → 1.62.31
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 +5 -5
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +5 -5
- package/src/executors/tsup-browser/executor.js +5 -5
- package/src/executors/tsup-neutral/executor.js +5 -5
- package/src/executors/tsup-node/executor.js +5 -5
- package/src/utils/index.js +5 -5
package/package.json
CHANGED
|
@@ -453269,26 +453269,26 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
453269
453269
|
...rawTsconfig.config,
|
|
453270
453270
|
compilerOptions: {
|
|
453271
453271
|
...rawTsconfig.config?.compilerOptions,
|
|
453272
|
-
rootDir: workspaceRoot,
|
|
453273
|
-
baseUrl: workspaceRoot,
|
|
453272
|
+
rootDir: workspaceRoot.replaceAll("\\", "/"),
|
|
453273
|
+
baseUrl: workspaceRoot.replaceAll("\\", "/"),
|
|
453274
453274
|
outDir: outputPath,
|
|
453275
453275
|
noEmit: false,
|
|
453276
453276
|
emitDeclarationOnly: true,
|
|
453277
453277
|
declaration: true,
|
|
453278
453278
|
declarationMap: true,
|
|
453279
|
-
declarationDir: (0, import_node_path2.join)(workspaceRoot, "tmp", ".tsup", "declaration")
|
|
453279
|
+
declarationDir: (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), "tmp", ".tsup", "declaration")
|
|
453280
453280
|
}
|
|
453281
453281
|
},
|
|
453282
453282
|
import_typescript.sys,
|
|
453283
453283
|
(0, import_node_path2.dirname)(options8.tsConfig)
|
|
453284
453284
|
);
|
|
453285
|
-
parsedTsconfig.options.pathsBasePath = workspaceRoot;
|
|
453285
|
+
parsedTsconfig.options.pathsBasePath = workspaceRoot.replaceAll("\\", "/");
|
|
453286
453286
|
if (parsedTsconfig.options.paths) {
|
|
453287
453287
|
parsedTsconfig.options.paths = Object.keys(parsedTsconfig.options.paths).reduce(
|
|
453288
453288
|
(ret, key2) => {
|
|
453289
453289
|
if (parsedTsconfig.options.paths?.[key2]) {
|
|
453290
453290
|
ret[key2] = parsedTsconfig.options.paths[key2]?.map(
|
|
453291
|
-
(path14) => (0, import_node_path2.join)(workspaceRoot, path14)
|
|
453291
|
+
(path14) => (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), path14)
|
|
453292
453292
|
);
|
|
453293
453293
|
}
|
|
453294
453294
|
return ret;
|
|
@@ -447085,26 +447085,26 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
447085
447085
|
...rawTsconfig.config,
|
|
447086
447086
|
compilerOptions: {
|
|
447087
447087
|
...rawTsconfig.config?.compilerOptions,
|
|
447088
|
-
rootDir: workspaceRoot,
|
|
447089
|
-
baseUrl: workspaceRoot,
|
|
447088
|
+
rootDir: workspaceRoot.replaceAll("\\", "/"),
|
|
447089
|
+
baseUrl: workspaceRoot.replaceAll("\\", "/"),
|
|
447090
447090
|
outDir: outputPath,
|
|
447091
447091
|
noEmit: false,
|
|
447092
447092
|
emitDeclarationOnly: true,
|
|
447093
447093
|
declaration: true,
|
|
447094
447094
|
declarationMap: true,
|
|
447095
|
-
declarationDir: (0, import_node_path2.join)(workspaceRoot, "tmp", ".tsup", "declaration")
|
|
447095
|
+
declarationDir: (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), "tmp", ".tsup", "declaration")
|
|
447096
447096
|
}
|
|
447097
447097
|
},
|
|
447098
447098
|
import_typescript.sys,
|
|
447099
447099
|
(0, import_node_path2.dirname)(options8.tsConfig)
|
|
447100
447100
|
);
|
|
447101
|
-
parsedTsconfig.options.pathsBasePath = workspaceRoot;
|
|
447101
|
+
parsedTsconfig.options.pathsBasePath = workspaceRoot.replaceAll("\\", "/");
|
|
447102
447102
|
if (parsedTsconfig.options.paths) {
|
|
447103
447103
|
parsedTsconfig.options.paths = Object.keys(parsedTsconfig.options.paths).reduce(
|
|
447104
447104
|
(ret, key2) => {
|
|
447105
447105
|
if (parsedTsconfig.options.paths?.[key2]) {
|
|
447106
447106
|
ret[key2] = parsedTsconfig.options.paths[key2]?.map(
|
|
447107
|
-
(path14) => (0, import_node_path2.join)(workspaceRoot, path14)
|
|
447107
|
+
(path14) => (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), path14)
|
|
447108
447108
|
);
|
|
447109
447109
|
}
|
|
447110
447110
|
return ret;
|
|
@@ -447085,26 +447085,26 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
447085
447085
|
...rawTsconfig.config,
|
|
447086
447086
|
compilerOptions: {
|
|
447087
447087
|
...rawTsconfig.config?.compilerOptions,
|
|
447088
|
-
rootDir: workspaceRoot,
|
|
447089
|
-
baseUrl: workspaceRoot,
|
|
447088
|
+
rootDir: workspaceRoot.replaceAll("\\", "/"),
|
|
447089
|
+
baseUrl: workspaceRoot.replaceAll("\\", "/"),
|
|
447090
447090
|
outDir: outputPath,
|
|
447091
447091
|
noEmit: false,
|
|
447092
447092
|
emitDeclarationOnly: true,
|
|
447093
447093
|
declaration: true,
|
|
447094
447094
|
declarationMap: true,
|
|
447095
|
-
declarationDir: (0, import_node_path2.join)(workspaceRoot, "tmp", ".tsup", "declaration")
|
|
447095
|
+
declarationDir: (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), "tmp", ".tsup", "declaration")
|
|
447096
447096
|
}
|
|
447097
447097
|
},
|
|
447098
447098
|
import_typescript.sys,
|
|
447099
447099
|
(0, import_node_path2.dirname)(options8.tsConfig)
|
|
447100
447100
|
);
|
|
447101
|
-
parsedTsconfig.options.pathsBasePath = workspaceRoot;
|
|
447101
|
+
parsedTsconfig.options.pathsBasePath = workspaceRoot.replaceAll("\\", "/");
|
|
447102
447102
|
if (parsedTsconfig.options.paths) {
|
|
447103
447103
|
parsedTsconfig.options.paths = Object.keys(parsedTsconfig.options.paths).reduce(
|
|
447104
447104
|
(ret, key2) => {
|
|
447105
447105
|
if (parsedTsconfig.options.paths?.[key2]) {
|
|
447106
447106
|
ret[key2] = parsedTsconfig.options.paths[key2]?.map(
|
|
447107
|
-
(path14) => (0, import_node_path2.join)(workspaceRoot, path14)
|
|
447107
|
+
(path14) => (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), path14)
|
|
447108
447108
|
);
|
|
447109
447109
|
}
|
|
447110
447110
|
return ret;
|
|
@@ -447085,26 +447085,26 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
447085
447085
|
...rawTsconfig.config,
|
|
447086
447086
|
compilerOptions: {
|
|
447087
447087
|
...rawTsconfig.config?.compilerOptions,
|
|
447088
|
-
rootDir: workspaceRoot,
|
|
447089
|
-
baseUrl: workspaceRoot,
|
|
447088
|
+
rootDir: workspaceRoot.replaceAll("\\", "/"),
|
|
447089
|
+
baseUrl: workspaceRoot.replaceAll("\\", "/"),
|
|
447090
447090
|
outDir: outputPath,
|
|
447091
447091
|
noEmit: false,
|
|
447092
447092
|
emitDeclarationOnly: true,
|
|
447093
447093
|
declaration: true,
|
|
447094
447094
|
declarationMap: true,
|
|
447095
|
-
declarationDir: (0, import_node_path2.join)(workspaceRoot, "tmp", ".tsup", "declaration")
|
|
447095
|
+
declarationDir: (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), "tmp", ".tsup", "declaration")
|
|
447096
447096
|
}
|
|
447097
447097
|
},
|
|
447098
447098
|
import_typescript.sys,
|
|
447099
447099
|
(0, import_node_path2.dirname)(options8.tsConfig)
|
|
447100
447100
|
);
|
|
447101
|
-
parsedTsconfig.options.pathsBasePath = workspaceRoot;
|
|
447101
|
+
parsedTsconfig.options.pathsBasePath = workspaceRoot.replaceAll("\\", "/");
|
|
447102
447102
|
if (parsedTsconfig.options.paths) {
|
|
447103
447103
|
parsedTsconfig.options.paths = Object.keys(parsedTsconfig.options.paths).reduce(
|
|
447104
447104
|
(ret, key2) => {
|
|
447105
447105
|
if (parsedTsconfig.options.paths?.[key2]) {
|
|
447106
447106
|
ret[key2] = parsedTsconfig.options.paths[key2]?.map(
|
|
447107
|
-
(path14) => (0, import_node_path2.join)(workspaceRoot, path14)
|
|
447107
|
+
(path14) => (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), path14)
|
|
447108
447108
|
);
|
|
447109
447109
|
}
|
|
447110
447110
|
return ret;
|
package/src/utils/index.js
CHANGED
|
@@ -457347,26 +457347,26 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
457347
457347
|
...rawTsconfig.config,
|
|
457348
457348
|
compilerOptions: {
|
|
457349
457349
|
...rawTsconfig.config?.compilerOptions,
|
|
457350
|
-
rootDir: workspaceRoot,
|
|
457351
|
-
baseUrl: workspaceRoot,
|
|
457350
|
+
rootDir: workspaceRoot.replaceAll("\\", "/"),
|
|
457351
|
+
baseUrl: workspaceRoot.replaceAll("\\", "/"),
|
|
457352
457352
|
outDir: outputPath,
|
|
457353
457353
|
noEmit: false,
|
|
457354
457354
|
emitDeclarationOnly: true,
|
|
457355
457355
|
declaration: true,
|
|
457356
457356
|
declarationMap: true,
|
|
457357
|
-
declarationDir: (0, import_node_path2.join)(workspaceRoot, "tmp", ".tsup", "declaration")
|
|
457357
|
+
declarationDir: (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), "tmp", ".tsup", "declaration")
|
|
457358
457358
|
}
|
|
457359
457359
|
},
|
|
457360
457360
|
import_typescript.sys,
|
|
457361
457361
|
(0, import_node_path2.dirname)(options8.tsConfig)
|
|
457362
457362
|
);
|
|
457363
|
-
parsedTsconfig.options.pathsBasePath = workspaceRoot;
|
|
457363
|
+
parsedTsconfig.options.pathsBasePath = workspaceRoot.replaceAll("\\", "/");
|
|
457364
457364
|
if (parsedTsconfig.options.paths) {
|
|
457365
457365
|
parsedTsconfig.options.paths = Object.keys(parsedTsconfig.options.paths).reduce(
|
|
457366
457366
|
(ret, key2) => {
|
|
457367
457367
|
if (parsedTsconfig.options.paths?.[key2]) {
|
|
457368
457368
|
ret[key2] = parsedTsconfig.options.paths[key2]?.map(
|
|
457369
|
-
(path13) => (0, import_node_path2.join)(workspaceRoot, path13)
|
|
457369
|
+
(path13) => (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), path13)
|
|
457370
457370
|
);
|
|
457371
457371
|
}
|
|
457372
457372
|
return ret;
|