create-revo 1.2.1 β†’ 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
@@ -1,5 +1,79 @@
1
- React Typescript Tailwind Framer Build Tool
2
- Uses Vite
1
+ # Revo - Fast & Efficient React Project Setup
3
2
 
4
- Do check my portfolio
5
- MaybeTarun.in
3
+ **Revo** is a custom React project setup tool built on top of Vite. It’s designed to streamline your workflow by providing a clean project structure, pre-configured with **Tailwind CSS** and **Framer Motion**, so you can focus on building amazing applications.
4
+
5
+ ---
6
+
7
+ ## πŸš€ Features
8
+
9
+ - **Powered by Vite**: Enjoy blazing-fast builds and an optimized development experience.
10
+ - **Tailwind CSS**: Fully configured for utility-first styling right out of the box.
11
+ - **Framer Motion**: Pre-installed for creating stunning animations with ease.
12
+ - **Better Project Layout**: Thoughtfully organized file structure to keep your code clean and maintainable.
13
+
14
+ ---
15
+
16
+ ## πŸ“¦ What You Get
17
+
18
+ 1. **Pre-configured Tailwind CSS** for styling.
19
+ 2. **Framer Motion** set up for animations.
20
+ 3. **Optimized Vite setup** for fast development and builds.
21
+ 4. A clean project directory structure:
22
+
23
+ ---
24
+
25
+ ## πŸ› οΈ Installation
26
+
27
+ ### Prerequisites
28
+ Make sure you have Node.js (>=14.x) and npm/yarn installed.
29
+
30
+ ### Create a New Project
31
+ Run the following command to create a new project:
32
+
33
+ ```
34
+ npx create-revo [project-name]
35
+ ```
36
+
37
+ ### Navigate to Your Project
38
+
39
+ ```
40
+ cd [project-name]
41
+ ```
42
+
43
+ ### Install Dependencies
44
+
45
+ ```
46
+ npm install
47
+ ```
48
+
49
+ ---
50
+
51
+ ## πŸƒ Getting Started
52
+
53
+
54
+ ### Start the Development Server
55
+
56
+ ```
57
+ npm run dev
58
+ ```
59
+
60
+ ### Build for Production
61
+
62
+ ```
63
+ npm run build
64
+ ```
65
+
66
+ ### Preview Production Build
67
+
68
+ ```
69
+ npm run preview
70
+ ```
71
+
72
+ ---
73
+
74
+ ## 🌟 Feedback & Support
75
+
76
+ If you like Revo or have suggestions for improvement, let me know!
77
+ You can reach out to me on [Twitter](https://twitter.com/MaybeTarun).
78
+
79
+ Happy coding with Revo! πŸŽ‰
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-revo",
3
- "version": "1.2.1",
4
- "description": "React Typescript Tailwind Framer Build Tool",
3
+ "version": "1.2.3",
4
+ "description": "React Project Setup Tool built on Vite",
5
5
  "main": "cli.js",
6
6
  "bin": {
7
7
  "create-revo": "./cli.js"
@@ -1,2 +1 @@
1
- React Typescript Tailwind Framer Build Tool
2
- Uses Vite
1
+ Edit it as per your project