smoonb 0.0.71 → 0.0.72
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/LICENSE.pt-BR.md +24 -0
- package/README.md +441 -363
- package/README.pt-BR.md +730 -0
- package/bin/smoonb.js +187 -128
- package/package.json +4 -2
- package/src/commands/backup/index.js +13 -12
- package/src/commands/backup/utils.js +25 -31
- package/src/commands/check.js +13 -8
- package/src/commands/config.js +142 -134
- package/src/commands/functions.js +14 -10
- package/src/commands/import.js +22 -19
- package/src/commands/restore/index.js +13 -12
- package/src/i18n/index.js +217 -0
- package/src/i18n/locales/en.json +251 -0
- package/src/i18n/locales/pt-BR.json +251 -0
- package/src/index.js +19 -18
- package/src/utils/banner.js +19 -16
- package/src/utils/prompt.js +4 -1
package/LICENSE.pt-BR.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
> *Esta é uma tradução de conveniência. Em caso de divergência, prevalece a versão em inglês contida no arquivo `LICENSE`.*
|
|
2
|
+
|
|
3
|
+
Licença MIT
|
|
4
|
+
|
|
5
|
+
Copyright (c) Goalmoon Tecnologia Ltda.
|
|
6
|
+
|
|
7
|
+
É concedida permissão, gratuitamente, a qualquer pessoa que obtenha uma cópia
|
|
8
|
+
deste software e arquivos de documentação associados (o "Software"), para lidar
|
|
9
|
+
com o Software sem restrições, incluindo, sem limitação, os direitos
|
|
10
|
+
de usar, copiar, modificar, mesclar, publicar, distribuir, sublicenciar e/ou vender
|
|
11
|
+
cópias do Software, e permitir que pessoas a quem o Software é
|
|
12
|
+
fornecido façam o mesmo, sujeito às seguintes condições:
|
|
13
|
+
|
|
14
|
+
O aviso de copyright acima e este aviso de permissão devem ser incluídos em todas
|
|
15
|
+
as cópias ou partes substanciais do Software.
|
|
16
|
+
|
|
17
|
+
O SOFTWARE É FORNECIDO "COMO ESTÁ", SEM GARANTIA DE QUALQUER TIPO, EXPRESSA OU
|
|
18
|
+
IMPLÍCITA, INCLUINDO, MAS NÃO SE LIMITANDO ÀS GARANTIAS DE COMERCIALIZAÇÃO,
|
|
19
|
+
ADEQUAÇÃO A UM FIM ESPECÍFICO E NÃO VIOLAÇÃO. EM NENHUM CASO OS AUTORES OU
|
|
20
|
+
DETENTORES DE DIREITOS AUTORAIS SERÃO RESPONSÁVEIS POR QUALQUER REIVINDICAÇÃO, DANOS OU OUTRA
|
|
21
|
+
RESPONSABILIDADE, SEJA EM AÇÃO DE CONTRATO, DELITO OU DE OUTRA FORMA, DECORRENTE DE,
|
|
22
|
+
FORA DE OU EM CONEXÃO COM O SOFTWARE OU O USO OU OUTRAS NEGOCIAÇÕES NO
|
|
23
|
+
SOFTWARE.
|
|
24
|
+
|