@storm-software/workspace-tools 1.10.11 → 1.10.12
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 +4 -12
- package/src/executors/tsup/get-config.js +3205 -9547
package/package.json
CHANGED
|
@@ -474367,18 +474367,10 @@ function getConfig(workspaceRoot, projectRoot, sourceRoot, {
|
|
|
474367
474367
|
verbose,
|
|
474368
474368
|
...rest
|
|
474369
474369
|
}) {
|
|
474370
|
-
const entry =
|
|
474371
|
-
|
|
474372
|
-
|
|
474373
|
-
|
|
474374
|
-
}
|
|
474375
|
-
).reduce((ret, filePath) => {
|
|
474376
|
-
ret[removeExtension(filePath.name)] = (0, import_devkit.joinPathFragments)(
|
|
474377
|
-
filePath.path,
|
|
474378
|
-
filePath.name
|
|
474379
|
-
);
|
|
474380
|
-
return ret;
|
|
474381
|
-
}, {});
|
|
474370
|
+
const entry = [
|
|
474371
|
+
rest.entry ? rest.entry : sourceRoot,
|
|
474372
|
+
...additionalEntryPoints ?? []
|
|
474373
|
+
];
|
|
474382
474374
|
return (0, import_tsup.defineConfig)([
|
|
474383
474375
|
modernConfig({
|
|
474384
474376
|
entry,
|