@stamhoofd/locales 2.119.0 → 2.120.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 (52) hide show
  1. package/dist/index.d.ts +4 -2
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +2 -5
  4. package/dist/index.js.map +1 -1
  5. package/dist/locales/digit/nl-BE.json +1 -0
  6. package/dist/locales/digit/nl-NL.json +1 -0
  7. package/dist/locales/jamboree/nl-BE.json +1 -0
  8. package/dist/locales/jamboree/nl-NL.json +1 -0
  9. package/dist/locales/keeo/nl-BE.json +1 -0
  10. package/dist/locales/keeo/nl-NL.json +1 -0
  11. package/dist/locales/stamhoofd/nl-BE.json +1 -0
  12. package/dist/locales/stamhoofd/nl-NL.json +1 -0
  13. package/package.json +19 -14
  14. package/dist/digit/nl-BE.json +0 -1
  15. package/dist/digit/nl-NL.json +0 -1
  16. package/dist/jamboree/nl-BE.json +0 -1
  17. package/dist/jamboree/nl-NL.json +0 -1
  18. package/dist/keeo/nl-BE.json +0 -1
  19. package/dist/keeo/nl-NL.json +0 -1
  20. package/dist/stamhoofd/nl-BE.json +0 -1
  21. package/dist/stamhoofd/nl-NL.json +0 -1
  22. package/dist/tsconfig.tsbuildinfo +0 -1
  23. package/esm/dist/digit/en-BE.json +0 -1
  24. package/esm/dist/digit/fr-BE.json +0 -1
  25. package/esm/dist/digit/nl-BE.json +0 -1
  26. package/esm/dist/digit/nl-NL.json +0 -1
  27. package/esm/dist/index.d.ts +0 -3
  28. package/esm/dist/index.d.ts.map +0 -1
  29. package/esm/dist/index.js +0 -7
  30. package/esm/dist/index.js.map +0 -1
  31. package/esm/dist/jamboree/en-BE.json +0 -1
  32. package/esm/dist/jamboree/fr-BE.json +0 -1
  33. package/esm/dist/jamboree/nl-BE.json +0 -1
  34. package/esm/dist/jamboree/nl-NL.json +0 -1
  35. package/esm/dist/keeo/en-BE.json +0 -1
  36. package/esm/dist/keeo/fr-BE.json +0 -1
  37. package/esm/dist/keeo/nl-BE.json +0 -1
  38. package/esm/dist/keeo/nl-NL.json +0 -1
  39. package/esm/dist/stamhoofd/en-BE.json +0 -1
  40. package/esm/dist/stamhoofd/fr-BE.json +0 -1
  41. package/esm/dist/stamhoofd/nl-BE.json +0 -1
  42. package/esm/dist/stamhoofd/nl-NL.json +0 -1
  43. package/esm/dist/tsconfig.tsbuildinfo +0 -1
  44. package/esm/package.json +0 -3
  45. /package/dist/{digit → locales/digit}/en-BE.json +0 -0
  46. /package/dist/{digit → locales/digit}/fr-BE.json +0 -0
  47. /package/dist/{jamboree → locales/jamboree}/en-BE.json +0 -0
  48. /package/dist/{jamboree → locales/jamboree}/fr-BE.json +0 -0
  49. /package/dist/{keeo → locales/keeo}/en-BE.json +0 -0
  50. /package/dist/{keeo → locales/keeo}/fr-BE.json +0 -0
  51. /package/dist/{stamhoofd → locales/stamhoofd}/en-BE.json +0 -0
  52. /package/dist/{stamhoofd → locales/stamhoofd}/fr-BE.json +0 -0
package/package.json CHANGED
@@ -1,25 +1,30 @@
1
1
  {
2
2
  "name": "@stamhoofd/locales",
3
- "version": "2.119.0",
3
+ "version": "2.120.0",
4
4
  "license": "UNLICENCED",
5
- "main": "./dist/index.js",
6
- "module": "./esm/dist/index.js",
5
+ "type": "module",
7
6
  "types": "./dist/index.d.ts",
8
- "sideEffects": false,
9
- "files": [
10
- "dist",
11
- "esm/dist",
12
- "esm/package.json"
13
- ],
7
+ "module": "./dist/index.js",
8
+ "main": "./dist/index.js",
14
9
  "exports": {
15
10
  ".": {
16
- "import": "./esm/dist/index.js",
17
- "require": "./dist/index.js",
18
- "types": "./dist/index.d.ts"
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.js"
14
+ },
15
+ "./locales/*": {
16
+ "types": "./dist/locales/*",
17
+ "import": "./dist/locales/*",
18
+ "require": "./dist/locales/*"
19
19
  }
20
20
  },
21
+ "files": [
22
+ "dist",
23
+ "package.json"
24
+ ],
25
+ "sideEffects": false,
21
26
  "scripts": {
22
- "build": "tsc -b . esm && node build.mjs"
27
+ "build": "tsc --build tsconfig.build.json && node build.js"
23
28
  },
24
- "gitHead": "7bcbadd31fcc4f3109efc67c4034d1382a1d0439"
29
+ "gitHead": "f38f79c15ce16b0c8c14743ff3eb61feda5a18d4"
25
30
  }