@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 +10 -0
- package/dist/{GenericAGGridTable-gCtDHSpI.cjs → GenericAGGridTable-DrfBiPyk.cjs} +683 -680
- package/dist/{GenericAGGridTable-D7Q79zkD.js → GenericAGGridTable-IBVa-Ppt.js} +15118 -15068
- package/dist/{RequiredLabel.view-2uk2JDkb.cjs → RequiredLabel.view-BdWMupD9.cjs} +1 -1
- package/dist/{RequiredLabel.view-DxiIX0aH.js → RequiredLabel.view-DSgwdxTO.js} +2 -2
- package/dist/{Table.view-CQZrNngF.cjs → Table.view-CD7Vqblw.cjs} +1 -1
- package/dist/{Table.view-C63K5sJS.js → Table.view-Chcw7m2f.js} +2 -2
- package/dist/{Title.view-BdxxBmGG.cjs → Title.view-Dhs-AR8l.cjs} +1 -1
- package/dist/{Title.view-CABqf5jY.js → Title.view-dhmqz0u8.js} +1 -1
- package/dist/components/atoms/index.cjs.js +1 -1
- package/dist/components/atoms/index.es.js +6 -6
- package/dist/components/index.cjs.js +1 -1
- package/dist/components/index.es.js +10 -10
- package/dist/components/molecules/index.cjs.js +1 -1
- package/dist/components/molecules/index.es.js +13 -13
- package/dist/components/organisms/index.cjs.js +1 -1
- package/dist/components/organisms/index.es.js +2 -2
- package/dist/helpers/functions/parseNumberField.d.ts +17 -1
- package/dist/helpers/index.cjs.js +1 -1
- package/dist/helpers/index.es.js +1 -1
- package/dist/index-CPP6SuZS.cjs +6 -0
- package/dist/index-YF_5f0O1.js +112 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +14 -14
- package/package.json +1 -1
- package/dist/index-CrCGNVEP.cjs +0 -6
- package/dist/index-DUYr_t1R.js +0 -81
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
|