@arkyn/templates 3.0.1-beta.160 → 3.0.1-beta.166
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.js +1911 -1767
- package/dist/modules/brazilianStates.js +112 -31
- package/dist/modules/countries.js +1712 -1712
- package/dist/modules/countryCurrencies.js +92 -26
- package/dist/modules/index.js +5 -10
- package/dist/modules/maximumFractionDigits.js +4 -4
- package/package.json +12 -4
|
@@ -1,27 +1,93 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
1
|
+
//#region src/countryCurrencies.ts
|
|
2
|
+
var e = {
|
|
3
|
+
USD: {
|
|
4
|
+
countryLanguage: "en-US",
|
|
5
|
+
countryCurrency: "USD"
|
|
6
|
+
},
|
|
7
|
+
EUR: {
|
|
8
|
+
countryLanguage: "de-DE",
|
|
9
|
+
countryCurrency: "EUR"
|
|
10
|
+
},
|
|
11
|
+
JPY: {
|
|
12
|
+
countryLanguage: "ja-JP",
|
|
13
|
+
countryCurrency: "JPY"
|
|
14
|
+
},
|
|
15
|
+
GBP: {
|
|
16
|
+
countryLanguage: "en-GB",
|
|
17
|
+
countryCurrency: "GBP"
|
|
18
|
+
},
|
|
19
|
+
AUD: {
|
|
20
|
+
countryLanguage: "en-AU",
|
|
21
|
+
countryCurrency: "AUD"
|
|
22
|
+
},
|
|
23
|
+
CAD: {
|
|
24
|
+
countryLanguage: "en-CA",
|
|
25
|
+
countryCurrency: "CAD"
|
|
26
|
+
},
|
|
27
|
+
CHF: {
|
|
28
|
+
countryLanguage: "de-CH",
|
|
29
|
+
countryCurrency: "CHF"
|
|
30
|
+
},
|
|
31
|
+
CNY: {
|
|
32
|
+
countryLanguage: "zh-CN",
|
|
33
|
+
countryCurrency: "CNY"
|
|
34
|
+
},
|
|
35
|
+
SEK: {
|
|
36
|
+
countryLanguage: "sv-SE",
|
|
37
|
+
countryCurrency: "SEK"
|
|
38
|
+
},
|
|
39
|
+
NZD: {
|
|
40
|
+
countryLanguage: "en-NZ",
|
|
41
|
+
countryCurrency: "NZD"
|
|
42
|
+
},
|
|
43
|
+
BRL: {
|
|
44
|
+
countryLanguage: "pt-BR",
|
|
45
|
+
countryCurrency: "BRL"
|
|
46
|
+
},
|
|
47
|
+
INR: {
|
|
48
|
+
countryLanguage: "en-IN",
|
|
49
|
+
countryCurrency: "INR"
|
|
50
|
+
},
|
|
51
|
+
RUB: {
|
|
52
|
+
countryLanguage: "ru-RU",
|
|
53
|
+
countryCurrency: "RUB"
|
|
54
|
+
},
|
|
55
|
+
ZAR: {
|
|
56
|
+
countryLanguage: "en-ZA",
|
|
57
|
+
countryCurrency: "ZAR"
|
|
58
|
+
},
|
|
59
|
+
MXN: {
|
|
60
|
+
countryLanguage: "es-MX",
|
|
61
|
+
countryCurrency: "MXN"
|
|
62
|
+
},
|
|
63
|
+
SGD: {
|
|
64
|
+
countryLanguage: "en-SG",
|
|
65
|
+
countryCurrency: "SGD"
|
|
66
|
+
},
|
|
67
|
+
HKD: {
|
|
68
|
+
countryLanguage: "zh-HK",
|
|
69
|
+
countryCurrency: "HKD"
|
|
70
|
+
},
|
|
71
|
+
NOK: {
|
|
72
|
+
countryLanguage: "nb-NO",
|
|
73
|
+
countryCurrency: "NOK"
|
|
74
|
+
},
|
|
75
|
+
KRW: {
|
|
76
|
+
countryLanguage: "ko-KR",
|
|
77
|
+
countryCurrency: "KRW"
|
|
78
|
+
},
|
|
79
|
+
TRY: {
|
|
80
|
+
countryLanguage: "tr-TR",
|
|
81
|
+
countryCurrency: "TRY"
|
|
82
|
+
},
|
|
83
|
+
IDR: {
|
|
84
|
+
countryLanguage: "id-ID",
|
|
85
|
+
countryCurrency: "IDR"
|
|
86
|
+
},
|
|
87
|
+
THB: {
|
|
88
|
+
countryLanguage: "th-TH",
|
|
89
|
+
countryCurrency: "THB"
|
|
90
|
+
}
|
|
27
91
|
};
|
|
92
|
+
//#endregion
|
|
93
|
+
export { e as countryCurrencies };
|
package/dist/modules/index.js
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
import { brazilianStates as
|
|
2
|
-
import { countries as
|
|
3
|
-
import { countryCurrencies as
|
|
4
|
-
import { maximumFractionDigits as
|
|
5
|
-
export {
|
|
6
|
-
t as brazilianStates,
|
|
7
|
-
i as countries,
|
|
8
|
-
a as countryCurrencies,
|
|
9
|
-
x as maximumFractionDigits
|
|
10
|
-
};
|
|
1
|
+
import { brazilianStates as e } from "./brazilianStates.js";
|
|
2
|
+
import { countries as t } from "./countries.js";
|
|
3
|
+
import { countryCurrencies as n } from "./countryCurrencies.js";
|
|
4
|
+
import { maximumFractionDigits as r } from "./maximumFractionDigits.js";
|
|
5
|
+
export { e as brazilianStates, t as countries, n as countryCurrencies, r as maximumFractionDigits };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
};
|
|
1
|
+
//#region src/maximumFractionDigits.ts
|
|
2
|
+
var e = 2;
|
|
3
|
+
//#endregion
|
|
4
|
+
export { e as maximumFractionDigits };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkyn/templates",
|
|
3
|
-
"version": "3.0.1-beta.
|
|
3
|
+
"version": "3.0.1-beta.166",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -26,14 +26,22 @@
|
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
28
28
|
"scripts": {
|
|
29
|
+
"audit": "bun audit --workspace packages/templates",
|
|
29
30
|
"build": "bunx vite build && bunx tsc --project tsconfig.json --emitDeclarationOnly && bun ./generate-exports.ts",
|
|
31
|
+
"publish:beta": "bun publish --tag beta",
|
|
32
|
+
"release:beta": "bun ./generate-version.ts beta",
|
|
33
|
+
"release:patch": "bun ./generate-version.ts patch",
|
|
34
|
+
"release:minor": "bun ./generate-version.ts minor",
|
|
35
|
+
"release:major": "bun ./generate-version.ts major",
|
|
36
|
+
"test": "bunx vitest --config vitest.config.ts --run",
|
|
37
|
+
"test:watch": "bunx vitest --config vitest.config.ts --watch",
|
|
30
38
|
"typecheck": "bunx tsc --project tsconfig.json --noEmit"
|
|
31
39
|
},
|
|
32
40
|
"dependencies": {},
|
|
33
41
|
"devDependencies": {
|
|
34
|
-
"bun
|
|
35
|
-
"
|
|
36
|
-
"vite": "^
|
|
42
|
+
"@types/bun": "^1.3.14",
|
|
43
|
+
"@types/node": "^26.0.1",
|
|
44
|
+
"vite": "^8.1.0"
|
|
37
45
|
},
|
|
38
46
|
"exports": {
|
|
39
47
|
".": {
|