holygrail5 1.0.7 → 1.0.8

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/dev.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "holygrail5",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Framework CSS generator con Node.js - Genera CSS optimizado con variables CSS desde un archivo JSON de configuración",
5
5
  "main": "generator.js",
6
6
  "bin": {
package/src/dev.js CHANGED
@@ -13,7 +13,7 @@ const watchProcess = spawn('node', [path.join(__dirname, 'watch.js')], {
13
13
 
14
14
  // Esperar un momento para que watch genere los archivos inicialmente
15
15
  setTimeout(() => {
16
- const port = process.env.PORT || '5000';
16
+ const port = process.env.PORT || '8080';
17
17
  console.log(`\n🌐 Iniciando servidor HTTP en http://localhost:${port}\n`);
18
18
  console.log('💡 Los archivos se regenerarán automáticamente cuando cambies config.json\n');
19
19
  console.log('💡 Recarga el navegador (Cmd+Shift+R o Ctrl+Shift+R) para ver los cambios\n');