@senior-ease/ui 0.1.0 → 0.1.2
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 +60 -60
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
# @senior-ease/ui
|
|
2
|
-
|
|
3
|
-
Angular UI library do Design System Senior Ease.
|
|
4
|
-
|
|
5
|
-
## Instalacao
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install @senior-ease/ui
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
Peer dependencies esperadas no app consumidor:
|
|
12
|
-
|
|
13
|
-
- `@angular/common`
|
|
14
|
-
- `@angular/core`
|
|
15
|
-
- `@fortawesome/angular-fontawesome`
|
|
16
|
-
- `@fortawesome/fontawesome-svg-core`
|
|
17
|
-
- `@fortawesome/free-solid-svg-icons`
|
|
18
|
-
|
|
19
|
-
## Uso Basico
|
|
20
|
-
|
|
21
|
-
```ts
|
|
22
|
-
import { ButtonComponent } from '@senior-ease/ui';
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
## Build da Biblioteca
|
|
26
|
-
|
|
27
|
-
No workspace raiz:
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
npm run build:ui
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
Saida: `dist/ui`
|
|
34
|
-
|
|
35
|
-
## Publicacao no NPM
|
|
36
|
-
|
|
37
|
-
No workspace raiz:
|
|
38
|
-
|
|
39
|
-
```bash
|
|
40
|
-
npm run publish:ui
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
Esse script faz:
|
|
44
|
-
|
|
45
|
-
1. build da lib
|
|
46
|
-
2. `npm publish ./dist/ui --access public`
|
|
47
|
-
|
|
48
|
-
## Versao (release)
|
|
49
|
-
|
|
50
|
-
Antes de publicar nova versao:
|
|
51
|
-
|
|
52
|
-
```bash
|
|
53
|
-
npm version patch --prefix projects/ui
|
|
54
|
-
```
|
|
55
|
-
|
|
56
|
-
Opcoes:
|
|
57
|
-
|
|
58
|
-
- `patch` para correcao (`0.1.0 -> 0.1.1`)
|
|
59
|
-
- `minor` para nova feature (`0.1.0 -> 0.2.0`)
|
|
60
|
-
- `major` para breaking change (`0.1.0 -> 1.0.0`)
|
|
1
|
+
# @senior-ease/ui
|
|
2
|
+
|
|
3
|
+
Angular UI library do Design System Senior Ease.
|
|
4
|
+
|
|
5
|
+
## Instalacao
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @senior-ease/ui
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Peer dependencies esperadas no app consumidor:
|
|
12
|
+
|
|
13
|
+
- `@angular/common`
|
|
14
|
+
- `@angular/core`
|
|
15
|
+
- `@fortawesome/angular-fontawesome`
|
|
16
|
+
- `@fortawesome/fontawesome-svg-core`
|
|
17
|
+
- `@fortawesome/free-solid-svg-icons`
|
|
18
|
+
|
|
19
|
+
## Uso Basico
|
|
20
|
+
|
|
21
|
+
```ts
|
|
22
|
+
import { ButtonComponent } from '@senior-ease/ui';
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Build da Biblioteca
|
|
26
|
+
|
|
27
|
+
No workspace raiz:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npm run build:ui
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Saida: `dist/ui`
|
|
34
|
+
|
|
35
|
+
## Publicacao no NPM
|
|
36
|
+
|
|
37
|
+
No workspace raiz:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npm run publish:ui
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Esse script faz:
|
|
44
|
+
|
|
45
|
+
1. build da lib
|
|
46
|
+
2. `npm publish ./dist/ui --access public`
|
|
47
|
+
|
|
48
|
+
## Versao (release)
|
|
49
|
+
|
|
50
|
+
Antes de publicar nova versao:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
npm version patch --prefix projects/ui
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Opcoes:
|
|
57
|
+
|
|
58
|
+
- `patch` para correcao (`0.1.0 -> 0.1.1`)
|
|
59
|
+
- `minor` para nova feature (`0.1.0 -> 0.2.0`)
|
|
60
|
+
- `major` para breaking change (`0.1.0 -> 1.0.0`)
|