@arkyn/shared 1.4.36 → 1.4.38

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/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@arkyn/shared",
3
- "version": "1.4.36",
3
+ "version": "1.4.38",
4
4
  "main": "./dist/bundle.js",
5
5
  "module": "./src/index.ts",
6
6
  "type": "module",
7
7
  "types": "./dist/index.d.ts",
8
8
  "scripts": {
9
- "build": "bunx tsc --project tsconfig.json",
9
+ "clean": "rm -rf dist",
10
+ "build": "bun run clean && bunx tsc --project tsconfig.json",
10
11
  "typecheck": "bunx tsc --project tsconfig.json --noEmit"
11
12
  },
12
13
  "dependencies": {
package/src/index.ts CHANGED
@@ -27,6 +27,9 @@ export { maskSensitiveData } from "./services/maskSensitiveData";
27
27
  export { normalizeRange, within } from "./services/range";
28
28
  export { truncateLargeFields } from "./services/truncateLargeFields";
29
29
 
30
+ // templates
31
+ export { countries } from "./templates/countries";
32
+
30
33
  // validations
31
34
  export { regex } from "./validations/regex";
32
35
  export { validateCPF } from "./validations/validateCPF";