mgpanel-cli 1.0.3 → 1.0.4

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/README.md +12 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -37,10 +37,20 @@ npm -v
37
37
 
38
38
  ## Comandos disponibles
39
39
 
40
- Crear un módulo:
40
+ Iniciar un proyecto:
41
+ ```bash
42
+ mgpanel init nombre-web
43
+ ```
44
+
45
+ Crear un paginas:
41
46
  ```bash
42
47
  mgpanel make page nombre-pagina
48
+ ```
49
+
50
+ Crear un secciones y asignarlas a páginas:
51
+ ```bash
43
52
  mgpanel make module nombre-modulo
44
53
  mgpanel add module nombre-modulo --to nombre-pagina
45
54
 
46
- ```
55
+ ```
56
+ Puedes crear diferentes secciones (módulos) y asginarlas a tu preferencia a cualquier página.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mgpanel-cli",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "MGPanel CLI",
5
5
  "bin": {
6
6
  "mgpanel": "./bin/mgpanel.js"