create-vextro 0.0.3 → 0.0.4
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 +29 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,15 +12,34 @@
|
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
-
## Getting Started
|
|
15
|
+
## 🚀 Getting Started
|
|
16
16
|
|
|
17
|
-
You can scaffold a new
|
|
17
|
+
You can scaffold a new extension using one of the following commands:
|
|
18
18
|
|
|
19
|
+
### With **npm**
|
|
19
20
|
```bash
|
|
20
21
|
npm create vextro@latest
|
|
21
22
|
````
|
|
22
23
|
|
|
23
|
-
|
|
24
|
+
### With **Yarn**
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
yarn create vextro
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### With **pnpm**
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pnpm create vextro
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### With **Bun**
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
bun create vextro
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Then follow the prompt to choose your project name:
|
|
24
43
|
|
|
25
44
|
```bash
|
|
26
45
|
cd my-extension
|
|
@@ -32,7 +51,7 @@ Finally, open Chrome and load your extension from the `dist/` folder via `chrome
|
|
|
32
51
|
|
|
33
52
|
---
|
|
34
53
|
|
|
35
|
-
## Example Folder Structure
|
|
54
|
+
## 📁 Example Folder Structure
|
|
36
55
|
|
|
37
56
|
```
|
|
38
57
|
my-extension/
|
|
@@ -52,15 +71,16 @@ my-extension/
|
|
|
52
71
|
|
|
53
72
|
---
|
|
54
73
|
|
|
55
|
-
## Features
|
|
74
|
+
## 🌟 Features
|
|
56
75
|
|
|
57
76
|
* ⚡ Instant startup with Vite
|
|
58
|
-
* 🔥
|
|
59
|
-
* 🧩 Multi-entry
|
|
60
|
-
* 🛠️ React + TypeScript + Tailwind
|
|
77
|
+
* 🔥 HMR for popup and options
|
|
78
|
+
* 🧩 Multi-entry support with `@crxjs/vite-plugin`
|
|
79
|
+
* 🛠️ Preconfigured React + TypeScript + Tailwind
|
|
80
|
+
* 🧱 Opinionated folder structure
|
|
61
81
|
|
|
62
82
|
---
|
|
63
83
|
|
|
64
|
-
## License
|
|
84
|
+
## 📄 License
|
|
65
85
|
|
|
66
86
|
MIT © [Lasantha Lakmal](https://github.com/lasalasa)
|