diff --git a/package.json b/package.json index 56c5eff..b3d5cd8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@euk-labs/beltz", - "version": "2.4.0", + "version": "2.4.2", "main": "./cjs/index.js", "module": "./index.js", "types": "./index.d.ts", @@ -19,8 +19,7 @@ "clean": "rimraf lib", "build": "node ./scripts/build.js && tsc --project ./tsconfig.json --emitDeclarationOnly", "lint": "tsc --project ./tsconfig.json && eslint src -c .eslintrc.json --ext tsx,ts", - "test": "jest", - "prepare": "husky install" + "test": "jest" }, "devDependencies": { "@babel/core": "^7.16.5", diff --git a/src/index.ts b/src/index.ts index 8f5aba6..8ad46dd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,6 @@ -export * from './date'; -export * from './cpf'; export * from './cnpj'; +export * from './cpf'; +export * from './date'; export * from './object'; export * from './regex'; +export * from './string'; diff --git a/src/string/index.ts b/src/string/index.ts new file mode 100644 index 0000000..67e286e --- /dev/null +++ b/src/string/index.ts @@ -0,0 +1 @@ +export * from './manipulation';