quick-scaffolds-cli 1.2.2 → 1.2.3
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
|
@@ -6,7 +6,7 @@ A lightweight interactive CLI for scaffolding starter web projects quickly.
|
|
|
6
6
|
|
|
7
7
|
quick-scaffolds-cli generates a ready-to-use project from templates with a simple prompt flow.
|
|
8
8
|
|
|
9
|
-
Current release: v1.2.
|
|
9
|
+
Current release: v1.2.3
|
|
10
10
|
|
|
11
11
|
## Quick Start
|
|
12
12
|
|
|
@@ -80,9 +80,10 @@ Generated structure:
|
|
|
80
80
|
```text
|
|
81
81
|
my-awesome-app/
|
|
82
82
|
├── .gitignore
|
|
83
|
-
├── index.css
|
|
84
83
|
├── index.html
|
|
85
84
|
├── package.json
|
|
85
|
+
├── public/
|
|
86
|
+
│ └── index.css
|
|
86
87
|
└── src/
|
|
87
88
|
├── App.css
|
|
88
89
|
├── App.jsx
|
|
@@ -125,9 +126,10 @@ quick-scaffolds-cli/
|
|
|
125
126
|
│ │ └── app.js
|
|
126
127
|
│ └── react-template/
|
|
127
128
|
│ ├── .gitignore
|
|
128
|
-
│ ├── index.css
|
|
129
129
|
│ ├── index.html
|
|
130
130
|
│ ├── package.json
|
|
131
|
+
│ ├── public/
|
|
132
|
+
│ │ └── index.css
|
|
131
133
|
│ └── src/
|
|
132
134
|
│ ├── App.css
|
|
133
135
|
│ ├── App.jsx
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|