@ufal-lccv/gpsub-ds 0.2.28 → 0.2.30

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
@@ -187,3 +187,13 @@ Na pasta da lib:
187
187
  ```bash
188
188
  npm unlink
189
189
  ```
190
+
191
+ ## Como publicar no registry (npm publish)
192
+ Atualmente no repositório do github temos uma github action que faz o processo de publicação no npm, mas caso queira publicar manualmente, siga os passos abaixo:
193
+
194
+ 1. Atualize a versão no `package.json`
195
+ 2. npm login (sua conta deve ter acesso ao escopo @ufal-lccv)
196
+ 3. npm run build
197
+ 4. npm version patch (ou minor/major, dependendo do tipo de mudança)
198
+ 5. npm publish --access public --tag alpha
199
+ 6. git push --follow-tags