@common-stack/rollup-vite-utils 8.2.5-alpha.0 → 8.2.5-alpha.1

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.
@@ -263,7 +263,7 @@ const validExternalModules = externalModulesList.filter((mod, idx) => {
263
263
  }
264
264
  return true;
265
265
  });
266
- export const ExternalModules = new Feature(...validExternalModules);
266
+ export const ExternalModules = validExternalModules.length > 0 ? new Feature(...validExternalModules) : new Feature({});
267
267
 
268
268
  `;
269
269
  if (devPackages.length > 0) {
@@ -263,7 +263,7 @@ const validExternalModules = externalModulesList.filter((mod, idx) => {
263
263
  }
264
264
  return true;
265
265
  });
266
- export const ExternalModules = new Feature(...validExternalModules);
266
+ export const ExternalModules = validExternalModules.length > 0 ? new Feature(...validExternalModules) : new Feature({});
267
267
 
268
268
  `;
269
269
  if (devPackages.length > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/rollup-vite-utils",
3
- "version": "8.2.5-alpha.0",
3
+ "version": "8.2.5-alpha.1",
4
4
  "description": "Client Module for react app",
5
5
  "homepage": "https://github.com/cdmbase/fullstack-pro#readme",
6
6
  "bugs": {
@@ -62,7 +62,7 @@
62
62
  "publishConfig": {
63
63
  "access": "public"
64
64
  },
65
- "gitHead": "e1848a6dcbefac5bf42efbff2765cd7d0699f188",
65
+ "gitHead": "8431d584c90dd068dd0a7d89227941e0236f6a03",
66
66
  "typescript": {
67
67
  "definition": "lib/index.d.ts"
68
68
  }