@ufal-lccv/gpsub-ds 0.2.26 → 0.2.28

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
@@ -34,6 +34,29 @@ Atomic Design deve ser uma solução, não outro problema. Se você quiser criar
34
34
 
35
35
  Este guia permite testar alterações locais do `gpsub-ds` dentro de um projeto consumidor sem publicar no registry.
36
36
 
37
+ ### TL;DR
38
+
39
+ Na lib (`gpsub-ds`):
40
+
41
+ ```bash
42
+ npm run build
43
+ npm link
44
+ ```
45
+
46
+ No projeto consumidor:
47
+
48
+ ```bash
49
+ npm unlink @ufal-lccv/gpsub-ds
50
+ npm link @ufal-lccv/gpsub-ds
51
+ npm run dev
52
+ ```
53
+
54
+ Validar link ativo:
55
+
56
+ ```bash
57
+ npm ls --link
58
+ ```
59
+
37
60
  ### Quando usar
38
61
 
39
62
  - Você alterou algo em `gpsub-ds/src` e quer ver refletindo no app consumidor.