jcinfo-utils 1.0.49 → 1.0.50

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/index.d.ts CHANGED
@@ -87,3 +87,7 @@ export function updateVersionDate(fs: Object): void
87
87
  export function updateVersionBuild(fs: Object, autoInc?: boolean): void
88
88
 
89
89
  export function encodeUriBase64(str: string): string
90
+
91
+ export function validarCPF(aValue: string): boolean
92
+
93
+ export function validarCNPJ(aValue: string): boolean
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jcinfo-utils",
3
- "version": "1.0.49",
3
+ "version": "1.0.50",
4
4
  "description": "Pacote de funções utilitárias",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -62,7 +62,7 @@ export function _updateDotEnv(fs, incrementBuild = false, filename = '.env') {
62
62
  saveArrayInFile(fs, content, filename)
63
63
  }
64
64
 
65
- const envProd = '.env.production.local'
65
+ const envProd = '.env'
66
66
  const envLocal = '.env.local'
67
67
  const envKey = 'VITE_VERSION'
68
68