devfast 1.1.0 → 1.1.1

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 +29 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,9 +1,29 @@
1
- # devfast CLI
2
-
3
- A fast scaffolding tool to generate projects from the devfast platform.
4
-
5
- ## Usage
6
-
7
- ```bash
8
- npx devfast create <template-id>
9
- ```
1
+ # devfast
2
+
3
+ A fast scaffolding CLI to generate projects from the **devfast platform**.
4
+
5
+ Instead of starting from scratch and cleaning up boilerplate, devfast lets you create projects from ready-to-use templates.
6
+
7
+ ## Usage
8
+
9
+ ```bash
10
+ npx devfast create <template-id>
11
+ ````
12
+
13
+ Example:
14
+
15
+ ```bash
16
+ npx devfast create vite-react-js
17
+ ```
18
+
19
+ ## Website
20
+
21
+ [https://devfastv1.vercel.app](https://devfastv1.vercel.app)
22
+
23
+ ## Contributing
24
+
25
+ devfast is in an early stage and the template ecosystem is just getting started.
26
+
27
+ If you'd like to contribute templates or improvements, feel free to open an issue or submit a pull request on GitHub.
28
+
29
+ [https://github.com/qubydev/devfast](https://github.com/qubydev/devfast)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devfast",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Devfast template setup library",
5
5
  "type": "module",
6
6
  "main": "dist/src/api.js",