@storm-software/workspace-tools 1.10.11 → 1.10.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.10.11",
3
+ "version": "1.10.13",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
@@ -474367,16 +474367,11 @@ function getConfig(workspaceRoot, projectRoot, sourceRoot, {
474367
474367
  verbose,
474368
474368
  ...rest
474369
474369
  }) {
474370
- const entry = globSync(
474371
- [rest.entry ? rest.entry : sourceRoot, ...additionalEntryPoints ?? []],
474372
- {
474373
- withFileTypes: true
474374
- }
474375
- ).reduce((ret, filePath) => {
474376
- ret[removeExtension(filePath.name)] = (0, import_devkit.joinPathFragments)(
474377
- filePath.path,
474378
- filePath.name
474379
- );
474370
+ const entry = [
474371
+ rest.entry ? rest.entry : (0, import_devkit.joinPathFragments)(sourceRoot, "index.ts"),
474372
+ ...additionalEntryPoints ?? []
474373
+ ].reduce((ret, filePath) => {
474374
+ ret[removeExtension(filePath).replaceAll("/", "-").replaceAll("\\", "-").replaceAll("*", "")] = filePath;
474380
474375
  return ret;
474381
474376
  }, {});
474382
474377
  return (0, import_tsup.defineConfig)([