cyber-elx 1.0.6 → 1.0.7

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.
@@ -273,7 +273,8 @@ Note: Available in All pages, and configurable from the website administration,
273
273
  + Sample: `"My Website"`
274
274
  - Navbar categories style:
275
275
  + Name: `navbarCategoriesStyle`
276
- + Sample: `true` or `false` (If true, the categories will be displayed in the navbar as a dropdown menu, parent [with parentId == null])
276
+ + Sample: `true` or `false` (If true, the categories should be displayed in the navbar as a dropdown menu, parent [with parentId == null])
277
+ + Important: If `true`, all categories `category.parentId` will be `null`
277
278
  - Language:
278
279
  + Name: `lang`
279
280
  + Sample: `"en"`, `"ar"` or `"fr"`
@@ -577,7 +578,7 @@ Note: Available in All pages, and configurable from the website administration,
577
578
  - The Home page URL: `/p/home`
578
579
  - The Blogs page URL: `/p/blogs`
579
580
  - The Blog page URL: `/p/blog/<ARTICLE_ID>`
580
- - The Courses page URL: `/p/courses`
581
+ - The Courses page URL: `/p/courses` (Doesn't use it, unless asked for it, since clients prefer to make the users navigate to the categories page then the courses)
581
582
  - The Course page URL: `/p/course/<COURSE_ID>`
582
583
  - The Contact page URL: `/p/contact`
583
584
  - The Category page URL: `/p/categories/<CATEGORY_ID>`
package/README.md CHANGED
@@ -4,12 +4,17 @@ CyberOcean CLI tool to upload/download ELX custom pages (Liquid templates).
4
4
  For detailed AI development documentation, see [DEV_DOC.md](DEV_DOC.md).
5
5
 
6
6
 
7
- ## Installation
7
+ ## Install
8
8
 
9
9
  ```bash
10
- npm install -g .
11
- # or
12
- npm link
10
+ npm install -g cyber-elx
11
+ ```
12
+
13
+
14
+ ## Update
15
+
16
+ ```bash
17
+ npm update -g cyber-elx
13
18
  ```
14
19
 
15
20
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyber-elx",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "CyberOcean CLI tool to upload/download ELX custom pages",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -11,7 +11,7 @@ const { promptInitConfig, confirmOverwrite, confirmUpload } = require('./prompts
11
11
  program
12
12
  .name('cyber-elx')
13
13
  .description('CLI tool to upload/download ELX custom pages')
14
- .version('1.0.0');
14
+ .version('1.0.7');
15
15
 
16
16
  program
17
17
  .command('init')