@polyglot-bundles/rw-lang 0.1.1 → 0.1.3
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/characters.js +160 -64
- package/dist/index.js +2 -10
- package/package.json +4 -9
package/dist/characters.js
CHANGED
|
@@ -1,64 +1,160 @@
|
|
|
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
|
-
|
|
27
|
-
},
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
1
|
+
//#region src/characters.ts
|
|
2
|
+
var e = {
|
|
3
|
+
b: {
|
|
4
|
+
char: "b",
|
|
5
|
+
name: "ibe",
|
|
6
|
+
pronunciation: "/b/"
|
|
7
|
+
},
|
|
8
|
+
c: {
|
|
9
|
+
char: "c",
|
|
10
|
+
name: "ice",
|
|
11
|
+
pronunciation: "/tʃ/"
|
|
12
|
+
},
|
|
13
|
+
d: {
|
|
14
|
+
char: "d",
|
|
15
|
+
name: "ide",
|
|
16
|
+
pronunciation: "/d/"
|
|
17
|
+
},
|
|
18
|
+
f: {
|
|
19
|
+
char: "f",
|
|
20
|
+
name: "ife",
|
|
21
|
+
pronunciation: "/f/"
|
|
22
|
+
},
|
|
23
|
+
g: {
|
|
24
|
+
char: "g",
|
|
25
|
+
name: "ige",
|
|
26
|
+
pronunciation: "/ɡ/"
|
|
27
|
+
},
|
|
28
|
+
h: {
|
|
29
|
+
char: "h",
|
|
30
|
+
name: "iha",
|
|
31
|
+
pronunciation: "/h/"
|
|
32
|
+
},
|
|
33
|
+
j: {
|
|
34
|
+
char: "j",
|
|
35
|
+
name: "ija",
|
|
36
|
+
pronunciation: "/dʒ/"
|
|
37
|
+
},
|
|
38
|
+
k: {
|
|
39
|
+
char: "k",
|
|
40
|
+
name: "ika",
|
|
41
|
+
pronunciation: "/k/"
|
|
42
|
+
},
|
|
43
|
+
l: {
|
|
44
|
+
char: "l",
|
|
45
|
+
name: "ira",
|
|
46
|
+
pronunciation: "/l/"
|
|
47
|
+
},
|
|
48
|
+
m: {
|
|
49
|
+
char: "m",
|
|
50
|
+
name: "ime",
|
|
51
|
+
pronunciation: "/m/"
|
|
52
|
+
},
|
|
53
|
+
n: {
|
|
54
|
+
char: "n",
|
|
55
|
+
name: "ine",
|
|
56
|
+
pronunciation: "/n/"
|
|
57
|
+
},
|
|
58
|
+
p: {
|
|
59
|
+
char: "p",
|
|
60
|
+
name: "ipe",
|
|
61
|
+
pronunciation: "/p/"
|
|
62
|
+
},
|
|
63
|
+
r: {
|
|
64
|
+
char: "r",
|
|
65
|
+
name: "ire",
|
|
66
|
+
pronunciation: "/r/"
|
|
67
|
+
},
|
|
68
|
+
s: {
|
|
69
|
+
char: "s",
|
|
70
|
+
name: "ise",
|
|
71
|
+
pronunciation: "/s/"
|
|
72
|
+
},
|
|
73
|
+
t: {
|
|
74
|
+
char: "t",
|
|
75
|
+
name: "ite",
|
|
76
|
+
pronunciation: "/t/"
|
|
77
|
+
},
|
|
78
|
+
v: {
|
|
79
|
+
char: "v",
|
|
80
|
+
name: "ive",
|
|
81
|
+
pronunciation: "/v/"
|
|
82
|
+
},
|
|
83
|
+
w: {
|
|
84
|
+
char: "w",
|
|
85
|
+
name: "iw",
|
|
86
|
+
pronunciation: "/w/"
|
|
87
|
+
},
|
|
88
|
+
y: {
|
|
89
|
+
char: "y",
|
|
90
|
+
name: "iy",
|
|
91
|
+
pronunciation: "/j/"
|
|
92
|
+
},
|
|
93
|
+
z: {
|
|
94
|
+
char: "z",
|
|
95
|
+
name: "ize",
|
|
96
|
+
pronunciation: "/z/"
|
|
97
|
+
}
|
|
98
|
+
}, t = {
|
|
99
|
+
a: {
|
|
100
|
+
char: "a",
|
|
101
|
+
name: "a",
|
|
102
|
+
pronunciation: "/a/"
|
|
103
|
+
},
|
|
104
|
+
e: {
|
|
105
|
+
char: "e",
|
|
106
|
+
name: "e",
|
|
107
|
+
pronunciation: "/e/"
|
|
108
|
+
},
|
|
109
|
+
i: {
|
|
110
|
+
char: "i",
|
|
111
|
+
name: "i",
|
|
112
|
+
pronunciation: "/i/"
|
|
113
|
+
},
|
|
114
|
+
o: {
|
|
115
|
+
char: "o",
|
|
116
|
+
name: "o",
|
|
117
|
+
pronunciation: "/o/"
|
|
118
|
+
},
|
|
119
|
+
u: {
|
|
120
|
+
char: "u",
|
|
121
|
+
name: "u",
|
|
122
|
+
pronunciation: "/u/"
|
|
123
|
+
}
|
|
124
|
+
}, n = {
|
|
125
|
+
...e,
|
|
126
|
+
...t
|
|
127
|
+
}, r = {
|
|
128
|
+
vowels: [
|
|
129
|
+
"a",
|
|
130
|
+
"e",
|
|
131
|
+
"i",
|
|
132
|
+
"o",
|
|
133
|
+
"u"
|
|
134
|
+
],
|
|
135
|
+
totalVowels: 5,
|
|
136
|
+
consonants: [
|
|
137
|
+
"b",
|
|
138
|
+
"c",
|
|
139
|
+
"d",
|
|
140
|
+
"f",
|
|
141
|
+
"g",
|
|
142
|
+
"h",
|
|
143
|
+
"j",
|
|
144
|
+
"k",
|
|
145
|
+
"l",
|
|
146
|
+
"m",
|
|
147
|
+
"n",
|
|
148
|
+
"p",
|
|
149
|
+
"r",
|
|
150
|
+
"s",
|
|
151
|
+
"t",
|
|
152
|
+
"v",
|
|
153
|
+
"w",
|
|
154
|
+
"y",
|
|
155
|
+
"z"
|
|
156
|
+
],
|
|
157
|
+
totalPhonemes: 24
|
|
158
|
+
}, i = Object.keys(e), a = Object.keys(t), o = Object.keys(n);
|
|
159
|
+
//#endregion
|
|
160
|
+
export { o as KINYARWANDA_CHARACTER_IDS, i as KINYARWANDA_CONSONANT_IDS, r as KINYARWANDA_PHONEME_INVENTORY, a as KINYARWANDA_VOWEL_IDS, n as kinyarwandaAllCharacters, e as kinyarwandaConsonants, t as kinyarwandaVowels };
|
package/dist/index.js
CHANGED
|
@@ -1,10 +1,2 @@
|
|
|
1
|
-
import { KINYARWANDA_CHARACTER_IDS as
|
|
2
|
-
export {
|
|
3
|
-
a as KINYARWANDA_CHARACTER_IDS,
|
|
4
|
-
n as KINYARWANDA_CONSONANT_IDS,
|
|
5
|
-
I as KINYARWANDA_PHONEME_INVENTORY,
|
|
6
|
-
_ as KINYARWANDA_VOWEL_IDS,
|
|
7
|
-
r as kinyarwandaAllCharacters,
|
|
8
|
-
D as kinyarwandaConsonants,
|
|
9
|
-
R as kinyarwandaVowels
|
|
10
|
-
};
|
|
1
|
+
import { KINYARWANDA_CHARACTER_IDS as e, KINYARWANDA_CONSONANT_IDS as t, KINYARWANDA_PHONEME_INVENTORY as n, KINYARWANDA_VOWEL_IDS as r, kinyarwandaAllCharacters as i, kinyarwandaConsonants as a, kinyarwandaVowels as o } from "./characters.js";
|
|
2
|
+
export { e as KINYARWANDA_CHARACTER_IDS, t as KINYARWANDA_CONSONANT_IDS, n as KINYARWANDA_PHONEME_INVENTORY, r as KINYARWANDA_VOWEL_IDS, i as kinyarwandaAllCharacters, a as kinyarwandaConsonants, o as kinyarwandaVowels };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polyglot-bundles/rw-lang",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -16,13 +16,9 @@
|
|
|
16
16
|
"publishConfig": {
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@polyglot-bundles/content-shared": "0.4.1"
|
|
21
|
-
},
|
|
22
19
|
"devDependencies": {
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"@polyglot-bundles/lang-tooling": "1.0.0"
|
|
20
|
+
"@polyglot-bundles/lang-tooling": "0.0.0",
|
|
21
|
+
"@polyglot-bundles/content-shared": "0.5.3"
|
|
26
22
|
},
|
|
27
23
|
"repository": {
|
|
28
24
|
"type": "git",
|
|
@@ -30,7 +26,6 @@
|
|
|
30
26
|
"directory": "packages/rw/lang"
|
|
31
27
|
},
|
|
32
28
|
"scripts": {
|
|
33
|
-
"build": "vite build"
|
|
34
|
-
"clean": "rm -rf dist"
|
|
29
|
+
"build": "vite build"
|
|
35
30
|
}
|
|
36
31
|
}
|