@keymanapp/kmc-keyboard-info 19.0.146-alpha → 19.0.151-alpha
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/README.md +10 -10
- package/build/src/keyboard-info-compiler-messages.js +6 -6
- package/package.json +50 -49
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Keyman Developer - kmc-keyboard-info
|
|
2
|
-
|
|
3
|
-
This package builds a .keyboard_info file from a Keyman keyboard project. It can
|
|
4
|
-
be used from the command line with
|
|
5
|
-
[@keymanapp/kmc](https://npmjs.com/package/@keymanapp/kmc).
|
|
6
|
-
|
|
7
|
-
This package is used only for preparing metadata files for deployment of
|
|
8
|
-
keyboards to the Keyman Cloud Keyboard Repository.
|
|
9
|
-
|
|
10
|
-
* [API Reference](https://help.keyman.com/developer/current-version/reference/api/kmc-keyboard-info)
|
|
1
|
+
# Keyman Developer - kmc-keyboard-info
|
|
2
|
+
|
|
3
|
+
This package builds a .keyboard_info file from a Keyman keyboard project. It can
|
|
4
|
+
be used from the command line with
|
|
5
|
+
[@keymanapp/kmc](https://npmjs.com/package/@keymanapp/kmc).
|
|
6
|
+
|
|
7
|
+
This package is used only for preparing metadata files for deployment of
|
|
8
|
+
keyboards to the Keyman Cloud Keyboard Repository.
|
|
9
|
+
|
|
10
|
+
* [API Reference](https://help.keyman.com/developer/current-version/reference/api/kmc-keyboard-info)
|
|
@@ -39,14 +39,14 @@ export class KeyboardInfoCompilerMessages {
|
|
|
39
39
|
static HINT_ScriptDoesNotMatch = SevHint | 0x0011;
|
|
40
40
|
static Hint_ScriptDoesNotMatch = (o) => m(this.HINT_ScriptDoesNotMatch, `The script '${def(o.script)}' associated with language tag '${def(o.bcp47)}' does not match the script '${def(o.commonScript)}' for the first language ('${def(o.firstBcp47)}') in the package.`);
|
|
41
41
|
static WARN_LanguageTagNotFound = SevWarn | 0x0012;
|
|
42
|
-
static Warn_LanguageTagNotFound = (o) => m(this.WARN_LanguageTagNotFound, `Neither the listed BCP 47 tag '${def(o.bcp47)}' nor the language subtag '${def(o.langSubtag)}' were found in langtags.json`, `The [langtags.json dataset](https://github.com/silnrsi/langtags?tab=readme-ov-file) lists all
|
|
43
|
-
the registered language tags. If a tag is not found, then it will not be
|
|
44
|
-
searchable in the Keyman keyboard catalogue, and it may indicate that the
|
|
42
|
+
static Warn_LanguageTagNotFound = (o) => m(this.WARN_LanguageTagNotFound, `Neither the listed BCP 47 tag '${def(o.bcp47)}' nor the language subtag '${def(o.langSubtag)}' were found in langtags.json`, `The [langtags.json dataset](https://github.com/silnrsi/langtags?tab=readme-ov-file) lists all
|
|
43
|
+
the registered language tags. If a tag is not found, then it will not be
|
|
44
|
+
searchable in the Keyman keyboard catalogue, and it may indicate that the
|
|
45
45
|
tag is incorrect.`);
|
|
46
46
|
static WARN_LanguageTagNotFound2 = SevWarn | 0x0013;
|
|
47
|
-
static Warn_LanguageTagNotFound2 = (o) => m(this.WARN_LanguageTagNotFound2, `The listed BCP 47 tag '${def(o.bcp47)}' was not found in langtags.json`, `The [langtags.json dataset](https://github.com/silnrsi/langtags?tab=readme-ov-file) lists all
|
|
48
|
-
the registered language tags. If a tag is not found, then it will not be
|
|
49
|
-
searchable in the Keyman keyboard catalogue, and it may indicate that the
|
|
47
|
+
static Warn_LanguageTagNotFound2 = (o) => m(this.WARN_LanguageTagNotFound2, `The listed BCP 47 tag '${def(o.bcp47)}' was not found in langtags.json`, `The [langtags.json dataset](https://github.com/silnrsi/langtags?tab=readme-ov-file) lists all
|
|
48
|
+
the registered language tags. If a tag is not found, then it will not be
|
|
49
|
+
searchable in the Keyman keyboard catalogue, and it may indicate that the
|
|
50
50
|
tag is incorrect.`);
|
|
51
51
|
}
|
|
52
52
|
//# sourceMappingURL=keyboard-info-compiler-messages.js.map
|
package/package.json
CHANGED
|
@@ -1,49 +1,50 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@keymanapp/kmc-keyboard-info",
|
|
3
|
-
"description": "Keyman Developer .keyboard_info compiler",
|
|
4
|
-
"keywords": [
|
|
5
|
-
"keyboard",
|
|
6
|
-
"keyman",
|
|
7
|
-
"unicode"
|
|
8
|
-
],
|
|
9
|
-
"type": "module",
|
|
10
|
-
"exports": {
|
|
11
|
-
".": "./build/src/index.js"
|
|
12
|
-
},
|
|
13
|
-
"files": [
|
|
14
|
-
"/build/src/"
|
|
15
|
-
],
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "tsc -b",
|
|
18
|
-
"lint": "eslint .",
|
|
19
|
-
"test": "npm run lint"
|
|
20
|
-
},
|
|
21
|
-
"license": "MIT",
|
|
22
|
-
"bugs": {
|
|
23
|
-
"url": "https://github.com/keymanapp/keyman/issues"
|
|
24
|
-
},
|
|
25
|
-
"dependencies": {
|
|
26
|
-
"@keymanapp/common-types": "19.0.
|
|
27
|
-
"@keymanapp/developer-utils": "19.0.
|
|
28
|
-
"@keymanapp/kmc-package": "19.0.
|
|
29
|
-
"@keymanapp/langtags": "19.0.
|
|
30
|
-
},
|
|
31
|
-
"devDependencies": {
|
|
32
|
-
"@types/mocha": "^5.2.7",
|
|
33
|
-
"@types/node": "^20.4.1",
|
|
34
|
-
"c8": "^7.12.0",
|
|
35
|
-
"chalk": "^2.4.2",
|
|
36
|
-
"typescript": "^5.4.5"
|
|
37
|
-
},
|
|
38
|
-
"mocha": {
|
|
39
|
-
"spec": "build/test/**/*.tests.js",
|
|
40
|
-
"require": [
|
|
41
|
-
"source-map-support/register"
|
|
42
|
-
]
|
|
43
|
-
},
|
|
44
|
-
"repository": {
|
|
45
|
-
"type": "git",
|
|
46
|
-
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@keymanapp/kmc-keyboard-info",
|
|
3
|
+
"description": "Keyman Developer .keyboard_info compiler",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"keyboard",
|
|
6
|
+
"keyman",
|
|
7
|
+
"unicode"
|
|
8
|
+
],
|
|
9
|
+
"type": "module",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./build/src/index.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"/build/src/"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsc -b",
|
|
18
|
+
"lint": "eslint .",
|
|
19
|
+
"test": "npm run lint"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/keymanapp/keyman/issues"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@keymanapp/common-types": "19.0.151-alpha",
|
|
27
|
+
"@keymanapp/developer-utils": "19.0.151-alpha",
|
|
28
|
+
"@keymanapp/kmc-package": "19.0.151-alpha",
|
|
29
|
+
"@keymanapp/langtags": "19.0.151-alpha"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@types/mocha": "^5.2.7",
|
|
33
|
+
"@types/node": "^20.4.1",
|
|
34
|
+
"c8": "^7.12.0",
|
|
35
|
+
"chalk": "^2.4.2",
|
|
36
|
+
"typescript": "^5.4.5"
|
|
37
|
+
},
|
|
38
|
+
"mocha": {
|
|
39
|
+
"spec": "build/test/**/*.tests.js",
|
|
40
|
+
"require": [
|
|
41
|
+
"source-map-support/register"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "git+https://github.com/keymanapp/keyman.git",
|
|
47
|
+
"directory": "developer/src/kmc-keyboard-info"
|
|
48
|
+
},
|
|
49
|
+
"version": "19.0.151-alpha"
|
|
50
|
+
}
|