@sysvale/cuida 3.0.0-beta.43 → 3.0.0-beta.45
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 +9 -9
- package/dist/@sysvale/cuida.es.js +2723 -2718
- package/dist/@sysvale/cuida.umd.js +15 -15
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<a href="https://sysvale.github.io/cuida">
|
|
3
|
-
<img src="https://
|
|
3
|
+
<img src="https://framerusercontent.com/images/xz7CrU73qctPY2Vm79XMnTAVM.svg" alt="Cuida logo" width="250" />
|
|
4
4
|
</a>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
- O Cuida pode ser instalado com o npm:
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
|
|
17
|
+
npm i @sysvale/cuida;
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
## Usando
|
|
@@ -59,13 +59,13 @@ Vue.use(Cuida);
|
|
|
59
59
|
- Clone o repositório:
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
|
|
62
|
+
git clone https://github.com/Sysvale/cuida.git
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
- Instale as dependências e suba o container docker:
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
|
|
68
|
+
docker-compose up -d
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
A aplicação estará disponível na porta `6006`, em [http://localhost:6006/](http://localhost:6006).
|
|
@@ -73,7 +73,7 @@ A aplicação estará disponível na porta `6006`, em [http://localhost:6006/](h
|
|
|
73
73
|
- Caso não queira usar docker, instale as dependências com:
|
|
74
74
|
|
|
75
75
|
```bash
|
|
76
|
-
|
|
76
|
+
npm i
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
### Executando o Cuida
|
|
@@ -83,7 +83,7 @@ $ npm i
|
|
|
83
83
|
- Ou alternativamente, sem o docker, rode apenas:
|
|
84
84
|
|
|
85
85
|
```bash
|
|
86
|
-
|
|
86
|
+
npm run storybook
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
### Testando-o
|
|
@@ -91,19 +91,19 @@ $ npm run storybook
|
|
|
91
91
|
- Utilizando o docker:
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
|
|
94
|
+
docker-compose exec cuida npm run test
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
ou
|
|
98
98
|
|
|
99
99
|
```bash
|
|
100
|
-
|
|
100
|
+
./on-server.sh npm run test
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
- Sem o docker:
|
|
104
104
|
|
|
105
105
|
```bash
|
|
106
|
-
|
|
106
|
+
npm run test
|
|
107
107
|
```
|
|
108
108
|
|
|
109
109
|
## Contribuindo
|