@polyglot-bundles/rw-lang 0.1.1 → 0.1.2

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.
@@ -1,64 +1,160 @@
1
- const n = {
2
- b: { char: "b", name: "ibe", pronunciation: "/b/" },
3
- c: { char: "c", name: "ice", pronunciation: "/tʃ/" },
4
- d: { char: "d", name: "ide", pronunciation: "/d/" },
5
- f: { char: "f", name: "ife", pronunciation: "/f/" },
6
- g: { char: "g", name: "ige", pronunciation: "/ɡ/" },
7
- h: { char: "h", name: "iha", pronunciation: "/h/" },
8
- j: { char: "j", name: "ija", pronunciation: "/dʒ/" },
9
- k: { char: "k", name: "ika", pronunciation: "/k/" },
10
- l: { char: "l", name: "ira", pronunciation: "/l/" },
11
- m: { char: "m", name: "ime", pronunciation: "/m/" },
12
- n: { char: "n", name: "ine", pronunciation: "/n/" },
13
- p: { char: "p", name: "ipe", pronunciation: "/p/" },
14
- r: { char: "r", name: "ire", pronunciation: "/r/" },
15
- s: { char: "s", name: "ise", pronunciation: "/s/" },
16
- t: { char: "t", name: "ite", pronunciation: "/t/" },
17
- v: { char: "v", name: "ive", pronunciation: "/v/" },
18
- w: { char: "w", name: "iw", pronunciation: "/w/" },
19
- y: { char: "y", name: "iy", pronunciation: "/j/" },
20
- z: { char: "z", name: "ize", pronunciation: "/z/" }
21
- }, a = {
22
- a: { char: "a", name: "a", pronunciation: "/a/" },
23
- e: { char: "e", name: "e", pronunciation: "/e/" },
24
- i: { char: "i", name: "i", pronunciation: "/i/" },
25
- o: { char: "o", name: "o", pronunciation: "/o/" },
26
- u: { char: "u", name: "u", pronunciation: "/u/" }
27
- }, i = {
28
- ...n,
29
- ...a
30
- }, o = {
31
- vowels: ["a", "e", "i", "o", "u"],
32
- totalVowels: 5,
33
- consonants: [
34
- "b",
35
- "c",
36
- "d",
37
- "f",
38
- "g",
39
- "h",
40
- "j",
41
- "k",
42
- "l",
43
- "m",
44
- "n",
45
- "p",
46
- "r",
47
- "s",
48
- "t",
49
- "v",
50
- "w",
51
- "y",
52
- "z"
53
- ],
54
- totalPhonemes: 24
55
- }, c = Object.keys(n), r = Object.keys(a), e = Object.keys(i);
56
- export {
57
- e as KINYARWANDA_CHARACTER_IDS,
58
- c as KINYARWANDA_CONSONANT_IDS,
59
- o as KINYARWANDA_PHONEME_INVENTORY,
60
- r as KINYARWANDA_VOWEL_IDS,
61
- i as kinyarwandaAllCharacters,
62
- n as kinyarwandaConsonants,
63
- a as kinyarwandaVowels
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 a, KINYARWANDA_CONSONANT_IDS as n, KINYARWANDA_PHONEME_INVENTORY as I, KINYARWANDA_VOWEL_IDS as _, kinyarwandaAllCharacters as r, kinyarwandaConsonants as D, kinyarwandaVowels as R } from "./characters.js";
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.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -17,12 +17,10 @@
17
17
  "access": "public"
18
18
  },
19
19
  "dependencies": {
20
- "@polyglot-bundles/content-shared": "0.4.1"
20
+ "@polyglot-bundles/content-shared": "0.5.1"
21
21
  },
22
22
  "devDependencies": {
23
- "vite": "^5.4.0",
24
- "vite-plugin-dts": "^4.0.0",
25
- "@polyglot-bundles/lang-tooling": "1.0.0"
23
+ "@polyglot-bundles/lang-tooling": "0.0.0"
26
24
  },
27
25
  "repository": {
28
26
  "type": "git",
@@ -30,7 +28,6 @@
30
28
  "directory": "packages/rw/lang"
31
29
  },
32
30
  "scripts": {
33
- "build": "vite build",
34
- "clean": "rm -rf dist"
31
+ "build": "vite build"
35
32
  }
36
33
  }