@sysvale/cuida 3.0.0-beta.44 → 3.0.0-beta.46

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
@@ -14,7 +14,7 @@
14
14
  - O Cuida pode ser instalado com o npm:
15
15
 
16
16
  ```bash
17
- $ npm i @sysvale/cuida;
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
- $ git clone https://github.com/Sysvale/cuida.git
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
- $ docker-compose up -d
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
- $ npm i
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
- $ npm run storybook
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
- $ docker-compose exec cuida npm run test
94
+ docker-compose exec cuida npm run test
95
95
  ```
96
96
 
97
97
  ou
98
98
 
99
99
  ```bash
100
- $ ./on-server.sh npm run test
100
+ ./on-server.sh npm run test
101
101
  ```
102
102
 
103
103
  - Sem o docker:
104
104
 
105
105
  ```bash
106
- $ npm run test
106
+ npm run test
107
107
  ```
108
108
 
109
109
  ## Contribuindo