slicejs-cli 1.0.56 → 1.0.57

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.
@@ -66,7 +66,7 @@ const getComponents = () => {
66
66
  return Object.fromEntries(allComponents);
67
67
  };
68
68
 
69
- function listComponents(){
69
+ function listComponentsReal(){
70
70
  // Obtener componentes dinámicamente
71
71
  const components = getComponents();
72
72
 
@@ -79,6 +79,6 @@ fs.writeFileSync(outputPath, `const components = ${JSON.stringify(components, nu
79
79
  Print.success('Lista de componentes actualizada dinámicamente');
80
80
  }
81
81
 
82
- export default listComponents;
82
+ export default listComponentsReal;
83
83
 
84
84
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slicejs-cli",
3
- "version": "1.0.56",
3
+ "version": "1.0.57",
4
4
  "description": "Command client for developing web applications with Slice.js framework",
5
5
  "main": "client.js",
6
6
  "scripts": {