@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/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.12",
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,18 +474367,10 @@ 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
- );
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,