@polyglot-bundles/qu-lang 0.5.1 → 0.5.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.
- package/dist/sounds.d.ts.map +1 -1
- package/dist/sounds.js +30 -34
- package/package.json +3 -3
package/dist/sounds.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sounds.d.ts","sourceRoot":"","sources":["../src/sounds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAElG;;;;;GAKG;AAEH,eAAO,MAAM,iBAAiB,EAAE,cAAc,EAgB7C,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,cAAc,EAMvC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,cAAc,EAMvC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,cAAc,EAIpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,
|
|
1
|
+
{"version":3,"file":"sounds.d.ts","sourceRoot":"","sources":["../src/sounds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAElG;;;;;GAKG;AAEH,eAAO,MAAM,iBAAiB,EAAE,cAAc,EAgB7C,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,cAAc,EAMvC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,cAAc,EAMvC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,cAAc,EAIpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,oBAOjC,CAAC"}
|
package/dist/sounds.js
CHANGED
|
@@ -171,39 +171,35 @@ var e = [
|
|
|
171
171
|
charType: "vowel",
|
|
172
172
|
ipa: "u"
|
|
173
173
|
}
|
|
174
|
-
], i = {
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
],
|
|
205
|
-
audioBasePath: "/audio/quechua",
|
|
206
|
-
audioFilePattern: "{id}.mp3"
|
|
207
|
-
};
|
|
174
|
+
], i = { categories: [
|
|
175
|
+
{
|
|
176
|
+
id: "consonants",
|
|
177
|
+
label: "Consonants",
|
|
178
|
+
sounds: e,
|
|
179
|
+
charType: "consonant",
|
|
180
|
+
color: "blue"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
id: "aspirated",
|
|
184
|
+
label: "Aspirated Stops",
|
|
185
|
+
sounds: t,
|
|
186
|
+
charType: "consonant",
|
|
187
|
+
color: "red"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
id: "ejectives",
|
|
191
|
+
label: "Ejective Stops",
|
|
192
|
+
sounds: n,
|
|
193
|
+
charType: "consonant",
|
|
194
|
+
color: "red"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
id: "vowels",
|
|
198
|
+
label: "Vowels (3-vowel system)",
|
|
199
|
+
sounds: r,
|
|
200
|
+
charType: "vowel",
|
|
201
|
+
color: "green"
|
|
202
|
+
}
|
|
203
|
+
] };
|
|
208
204
|
//#endregion
|
|
209
205
|
export { t as quAspirated, n as quEjectives, e as quPlainConsonants, r as quVowels, i as quechuaSoundsConfig };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polyglot-bundles/qu-lang",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Quechua language foundation data - characters, sounds, and pronunciation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"vite-plugin-dts": "^4.5.4",
|
|
38
38
|
"vitest": "^4.1.4",
|
|
39
|
-
"@polyglot-bundles/
|
|
40
|
-
"@polyglot-bundles/
|
|
39
|
+
"@polyglot-bundles/content-shared": "0.8.0",
|
|
40
|
+
"@polyglot-bundles/lang-tooling": "0.0.0"
|
|
41
41
|
},
|
|
42
42
|
"repository": {
|
|
43
43
|
"type": "git",
|