@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.
- package/dist/index.d.ts +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -5
- package/dist/index.js.map +1 -1
- package/dist/locales/digit/nl-BE.json +1 -0
- package/dist/locales/digit/nl-NL.json +1 -0
- package/dist/locales/jamboree/nl-BE.json +1 -0
- package/dist/locales/jamboree/nl-NL.json +1 -0
- package/dist/locales/keeo/nl-BE.json +1 -0
- package/dist/locales/keeo/nl-NL.json +1 -0
- package/dist/locales/stamhoofd/nl-BE.json +1 -0
- package/dist/locales/stamhoofd/nl-NL.json +1 -0
- package/package.json +19 -14
- package/dist/digit/nl-BE.json +0 -1
- package/dist/digit/nl-NL.json +0 -1
- package/dist/jamboree/nl-BE.json +0 -1
- package/dist/jamboree/nl-NL.json +0 -1
- package/dist/keeo/nl-BE.json +0 -1
- package/dist/keeo/nl-NL.json +0 -1
- package/dist/stamhoofd/nl-BE.json +0 -1
- package/dist/stamhoofd/nl-NL.json +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/esm/dist/digit/en-BE.json +0 -1
- package/esm/dist/digit/fr-BE.json +0 -1
- package/esm/dist/digit/nl-BE.json +0 -1
- package/esm/dist/digit/nl-NL.json +0 -1
- package/esm/dist/index.d.ts +0 -3
- package/esm/dist/index.d.ts.map +0 -1
- package/esm/dist/index.js +0 -7
- package/esm/dist/index.js.map +0 -1
- package/esm/dist/jamboree/en-BE.json +0 -1
- package/esm/dist/jamboree/fr-BE.json +0 -1
- package/esm/dist/jamboree/nl-BE.json +0 -1
- package/esm/dist/jamboree/nl-NL.json +0 -1
- package/esm/dist/keeo/en-BE.json +0 -1
- package/esm/dist/keeo/fr-BE.json +0 -1
- package/esm/dist/keeo/nl-BE.json +0 -1
- package/esm/dist/keeo/nl-NL.json +0 -1
- package/esm/dist/stamhoofd/en-BE.json +0 -1
- package/esm/dist/stamhoofd/fr-BE.json +0 -1
- package/esm/dist/stamhoofd/nl-BE.json +0 -1
- package/esm/dist/stamhoofd/nl-NL.json +0 -1
- package/esm/dist/tsconfig.tsbuildinfo +0 -1
- package/esm/package.json +0 -3
- /package/dist/{digit → locales/digit}/en-BE.json +0 -0
- /package/dist/{digit → locales/digit}/fr-BE.json +0 -0
- /package/dist/{jamboree → locales/jamboree}/en-BE.json +0 -0
- /package/dist/{jamboree → locales/jamboree}/fr-BE.json +0 -0
- /package/dist/{keeo → locales/keeo}/en-BE.json +0 -0
- /package/dist/{keeo → locales/keeo}/fr-BE.json +0 -0
- /package/dist/{stamhoofd → locales/stamhoofd}/en-BE.json +0 -0
- /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.
|
|
3
|
+
"version": "2.120.0",
|
|
4
4
|
"license": "UNLICENCED",
|
|
5
|
-
"
|
|
6
|
-
"module": "./esm/dist/index.js",
|
|
5
|
+
"type": "module",
|
|
7
6
|
"types": "./dist/index.d.ts",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
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
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
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
|
|
27
|
+
"build": "tsc --build tsconfig.build.json && node build.js"
|
|
23
28
|
},
|
|
24
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "f38f79c15ce16b0c8c14743ff3eb61feda5a18d4"
|
|
25
30
|
}
|