@enos5/enos-vue 0.1.3 → 0.2.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.
- package/README.md +27 -0
- package/dist/index.js +1210 -1274
- package/package.json +14 -7
package/README.md
CHANGED
|
@@ -21,6 +21,33 @@ Build the package:
|
|
|
21
21
|
npm run build
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
## Component Documentation Sandbox
|
|
25
|
+
|
|
26
|
+
This repository includes a dedicated docs playground for the component library. It renders each component with a live example and generates editable prop controls from the component prop definitions.
|
|
27
|
+
|
|
28
|
+
Run it locally:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npm install
|
|
32
|
+
npm run docs:dev
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Build the docs site:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm run docs:build
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Run With Docker
|
|
42
|
+
|
|
43
|
+
Start the docs app with Docker Compose:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
docker compose up --build
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Then open `http://localhost:4173`.
|
|
50
|
+
|
|
24
51
|
## Use In Another Project
|
|
25
52
|
|
|
26
53
|
Install the published package:
|