@mapples/cli 0.0.8 → 0.0.10

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.
package/README.md CHANGED
@@ -46,7 +46,7 @@ This command will:
46
46
  - Generate React components using templates
47
47
  - Create page directories with the following structure:
48
48
  ```
49
- src/pages/{PageName}/
49
+ mapples/pages/{PageName}/
50
50
  ├── {PageName}Mapplet.tsx
51
51
  ├── {PageName}.json
52
52
  ├── _meta_{PageName}.json
@@ -82,7 +82,7 @@ The CLI uses a `.mapplesrc.json` file for configuration. Here are the available
82
82
  "pagesDir": "pages",
83
83
  "styleDir": "style",
84
84
  "assetsDir": "assets",
85
- "sourceDir": "src"
85
+ "sourceDir": "mapples"
86
86
  }
87
87
  ```
88
88
 
@@ -95,7 +95,7 @@ The CLI uses a `.mapplesrc.json` file for configuration. Here are the available
95
95
  - **pagesDir**: Directory name for pages (default: "pages")
96
96
  - **styleDir**: Directory name for styles (default: "style")
97
97
  - **assetsDir**: Directory name for assets (default: "assets")
98
- - **sourceDir**: Source directory name (default: "src")
98
+ - **sourceDir**: Source directory name (default: "mapples")
99
99
 
100
100
  ## Generated Files
101
101