@navservice/core 1.30.0 → 1.35.0

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.
Files changed (2) hide show
  1. package/README.md +54 -54
  2. package/package.json +50 -50
package/README.md CHANGED
@@ -1,54 +1,54 @@
1
- # PADRÕES DE COMMIT UTILIZADOS NO PROJETO
2
-
3
- 🎉 start: Inicial
4
- 📚 docs: Atualiza README
5
- 🐛 fix: Corrige loop na 50
6
- ✨ feat: Adiciona login
7
- 💄 feat: Estiliza formulário
8
- 🧱 ci: Modifica Dockerfile
9
- ♻️ refactor: Refatora para arrow functions
10
- ⚡ perf: Melhora resposta
11
- 💥 fix: Reverte mudanças
12
- 🧪 test: Adiciona teste
13
- 💡 docs: Comenta função
14
- 🗃️ raw: Adiciona dados RAW
15
- 🧹 cleanup: Limpa validação
16
- 🗑️ remove: Remove arquivos
17
-
18
- # COMMITS NO GIT HUB
19
-
20
- bunx npm version minor --no-git-tag-version --no-git-checks
21
- git pull
22
- git init
23
- git add .
24
- git commit -m "✨ feat: "
25
- git push -u origin producao
26
-
27
- ### DESCOBRIR O IP DA PESSOA
28
-
29
- https://cloudflare.com/cdn-cgi/trace
30
-
31
- # Versionamento semântico (SemVer): Use o padrão X.Y.Z (Major.Minor.Patch)
32
-
33
- X (Major): Primeiro número - aumentado quando ocorrem mudanças incompatíveis com versões anteriores (breaking changes)
34
- Y (Minor): Número do meio - aumentado quando adicionados novos recursos compatíveis com versões anteriores
35
- Z (Patch): Último número - aumentado para correções de bugs e pequenos ajustes que não alteram a funcionalidade existente
36
-
37
- # COMO FONGIGURAR O ENV
38
-
39
- frontend:
40
- SRC/FRONTEND/.dev
41
- backend:
42
- SRC/.dev
43
-
44
- # LINK DE IMAGENS INFINITAS
45
-
46
- https://i.pravatar.cc/100
47
-
48
- # FALTA TRATAR NO APP PROCURAR POR:
49
-
50
- //ERROR
51
-
52
- //ERROR UI/UX
53
-
54
- //FEET
1
+ # PADRÕES DE COMMIT UTILIZADOS NO PROJETO
2
+
3
+ 🎉 start: Inicial
4
+ 📚 docs: Atualiza README
5
+ 🐛 fix: Corrige loop na 50
6
+ ✨ feat: Adiciona login
7
+ 💄 feat: Estiliza formulário
8
+ 🧱 ci: Modifica Dockerfile
9
+ ♻️ refactor: Refatora para arrow functions
10
+ ⚡ perf: Melhora resposta
11
+ 💥 fix: Reverte mudanças
12
+ 🧪 test: Adiciona teste
13
+ 💡 docs: Comenta função
14
+ 🗃️ raw: Adiciona dados RAW
15
+ 🧹 cleanup: Limpa validação
16
+ 🗑️ remove: Remove arquivos
17
+
18
+ # COMMITS NO GIT HUB
19
+
20
+ bunx npm version minor --no-git-tag-version --no-git-checks
21
+ git pull
22
+ git init
23
+ git add .
24
+ git commit -m "✨ feat: "
25
+ git push -u origin producao
26
+
27
+ ### DESCOBRIR O IP DA PESSOA
28
+
29
+ https://cloudflare.com/cdn-cgi/trace
30
+
31
+ # Versionamento semântico (SemVer): Use o padrão X.Y.Z (Major.Minor.Patch)
32
+
33
+ X (Major): Primeiro número - aumentado quando ocorrem mudanças incompatíveis com versões anteriores (breaking changes)
34
+ Y (Minor): Número do meio - aumentado quando adicionados novos recursos compatíveis com versões anteriores
35
+ Z (Patch): Último número - aumentado para correções de bugs e pequenos ajustes que não alteram a funcionalidade existente
36
+
37
+ # COMO FONGIGURAR O ENV
38
+
39
+ frontend:
40
+ SRC/FRONTEND/.dev
41
+ backend:
42
+ SRC/.dev
43
+
44
+ # LINK DE IMAGENS INFINITAS
45
+
46
+ https://i.pravatar.cc/100
47
+
48
+ # FALTA TRATAR NO APP PROCURAR POR:
49
+
50
+ //ERROR
51
+
52
+ //ERROR UI/UX
53
+
54
+ //FEET
package/package.json CHANGED
@@ -1,50 +1,50 @@
1
- {
2
- "name": "@navservice/core",
3
- "version": "1.30.0",
4
- "description": "Service core de todos os micro serviços",
5
- "type": "module",
6
- "exports": {
7
- ".": {
8
- "browser": "./build/es/index.browser.js",
9
- "node": "./build/es/index.node.js",
10
- "import": "./build/es/index.browser.js",
11
- "types": "./build/es/index.browser.d.ts"
12
- },
13
- "./utils": {
14
- "import": "./build/es/utils.js",
15
- "types": "./build/es/utils/index.d.ts"
16
- },
17
- "./helpers": {
18
- "default": "./build/es/helpers.js",
19
- "types": "./build/es/helpers/index.d.ts"
20
- }
21
- },
22
- "files": [
23
- "build"
24
- ],
25
- "scripts": {
26
- "build": "rslib build",
27
- "lib": "npm run build && npm publish --access public"
28
- },
29
- "publishConfig": {
30
- "access": "public",
31
- "provenance": false
32
- },
33
- "peerDependencies": {
34
- "axios": "^1.9.0",
35
- "hono": "^4.9.7",
36
- "zod": "^4",
37
- "zustand": "^5"
38
- },
39
- "devDependencies": {
40
- "@rslib/core": "^0.18.4",
41
- "@types/node": "^24.10.1",
42
- "typescript": "^5"
43
- },
44
- "dependencies": {
45
- "jose": "^6.1.3"
46
- },
47
- "engines": {
48
- "node": ">=22"
49
- }
50
- }
1
+ {
2
+ "name": "@navservice/core",
3
+ "version": "1.35.0",
4
+ "description": "Service core de todos os micro serviços",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "browser": "./build/es/index.browser.js",
9
+ "node": "./build/es/index.node.js",
10
+ "import": "./build/es/index.browser.js",
11
+ "types": "./build/es/index.browser.d.ts"
12
+ },
13
+ "./utils": {
14
+ "import": "./build/es/utils.js",
15
+ "types": "./build/es/utils/index.d.ts"
16
+ },
17
+ "./helpers": {
18
+ "default": "./build/es/helpers.js",
19
+ "types": "./build/es/helpers/index.d.ts"
20
+ }
21
+ },
22
+ "files": [
23
+ "build"
24
+ ],
25
+ "scripts": {
26
+ "build": "rslib build",
27
+ "lib": "npm version minor && npm run build && npm publish --access public"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public",
31
+ "provenance": false
32
+ },
33
+ "peerDependencies": {
34
+ "axios": "^1.9.0",
35
+ "hono": "^4.9.7",
36
+ "zod": "^4",
37
+ "zustand": "^5"
38
+ },
39
+ "devDependencies": {
40
+ "@rslib/core": "^0.18.4",
41
+ "@types/node": "^24.10.1",
42
+ "typescript": "^5"
43
+ },
44
+ "dependencies": {
45
+ "jose": "^6.1.3"
46
+ },
47
+ "engines": {
48
+ "node": ">=22"
49
+ }
50
+ }