@storm-software/workspace-tools 1.10.17 → 1.10.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 +7 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +1 -1
- package/src/executors/tsup/get-config.js +1 -1
package/package.json
CHANGED
|
@@ -474380,7 +474380,7 @@ function getConfig(workspaceRoot, projectRoot, sourceRoot, {
|
|
|
474380
474380
|
withFileTypes: true
|
|
474381
474381
|
}
|
|
474382
474382
|
).reduce((ret, filePath) => {
|
|
474383
|
-
ret[(0, import_path2.join)(filePath.path, removeExtension(filePath.name)).replaceAll(
|
|
474383
|
+
ret[(0, import_path2.join)(filePath.path, removeExtension(filePath.name)).replaceAll(workspaceRoot, "").replaceAll("\\", "/").replaceAll(projectRoot, "")] = (0, import_path2.join)(filePath.path, filePath.name);
|
|
474384
474384
|
return ret;
|
|
474385
474385
|
}, {});
|
|
474386
474386
|
return (0, import_tsup.defineConfig)([
|
|
@@ -258712,7 +258712,7 @@ function getConfig(workspaceRoot, projectRoot, sourceRoot, {
|
|
|
258712
258712
|
withFileTypes: true
|
|
258713
258713
|
}
|
|
258714
258714
|
).reduce((ret, filePath) => {
|
|
258715
|
-
ret[(0, import_path2.join)(filePath.path, removeExtension(filePath.name)).replaceAll(
|
|
258715
|
+
ret[(0, import_path2.join)(filePath.path, removeExtension(filePath.name)).replaceAll(workspaceRoot, "").replaceAll("\\", "/").replaceAll(projectRoot, "")] = (0, import_path2.join)(filePath.path, filePath.name);
|
|
258716
258716
|
return ret;
|
|
258717
258717
|
}, {});
|
|
258718
258718
|
return (0, import_tsup.defineConfig)([
|