@keymanapp/kmc-analyze 19.0.145-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 CHANGED
@@ -1,11 +1,11 @@
1
- # Keyman Developer - kmc-analyze
2
-
3
- This package provides Keyman keyboard analysis tools. It can be used from the
4
- command line with [@keymanapp/kmc](https://npmjs.com/package/@keymanapp/kmc).
5
-
6
- Currently, the primary function of this package is to work with Keyman's
7
- [`&displayMap` store](https://help.keyman.com/developer/language/reference/displaymap) for
8
- rewriting the On Screen Keyboard with PUA characters, for consistent display of
9
- diacritics and combining marks across all platforms.
10
-
11
- * [API Reference](https://help.keyman.com/developer/current-version/reference/api/kmc-analyze)
1
+ # Keyman Developer - kmc-analyze
2
+
3
+ This package provides Keyman keyboard analysis tools. It can be used from the
4
+ command line with [@keymanapp/kmc](https://npmjs.com/package/@keymanapp/kmc).
5
+
6
+ Currently, the primary function of this package is to work with Keyman's
7
+ [`&displayMap` store](https://help.keyman.com/developer/language/reference/displaymap) for
8
+ rewriting the On Screen Keyboard with PUA characters, for consistent display of
9
+ diacritics and combining marks across all platforms.
10
+
11
+ * [API Reference](https://help.keyman.com/developer/current-version/reference/api/kmc-analyze)
@@ -14,8 +14,8 @@ const SevFatal = CompilerErrorSeverity.Fatal | Namespace;
14
14
  */
15
15
  export class AnalyzerMessages {
16
16
  static FATAL_UnexpectedException = SevFatal | 0x0001;
17
- static Fatal_UnexpectedException = (o) => CompilerMessageSpecWithException(this.FATAL_UnexpectedException, null, o.e ?? 'unknown error', `Raised when an analysis components has an internal error. If you
18
- experience this error, it should be reported to the Keyman team for
17
+ static Fatal_UnexpectedException = (o) => CompilerMessageSpecWithException(this.FATAL_UnexpectedException, null, o.e ?? 'unknown error', `Raised when an analysis components has an internal error. If you
18
+ experience this error, it should be reported to the Keyman team for
19
19
  resolution via ${KeymanUrls.NEW_KEYMAN_ISSUE()}`);
20
20
  static INFO_ScanningFile = SevInfo | 0x0002;
21
21
  static Info_ScanningFile = (o) => m(this.INFO_ScanningFile, `Scanning ${def(o.type)} file ${def(o.name)}`, `Informative message reporting on the current file being scanned`);
package/package.json CHANGED
@@ -1,49 +1,50 @@
1
- {
2
- "name": "@keymanapp/kmc-analyze",
3
- "description": "Keyman Developer Compiler Module - keyboard analysis tools",
4
- "keywords": [
5
- "keyboard",
6
- "keyman",
7
- "unicode"
8
- ],
9
- "scripts": {
10
- "build": "gosh ./build.sh build",
11
- "test": "gosh ./build.sh test"
12
- },
13
- "type": "module",
14
- "author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
15
- "license": "MIT",
16
- "bugs": {
17
- "url": "https://github.com/keymanapp/keyman/issues"
18
- },
19
- "exports": {
20
- ".": "./build/src/index.js"
21
- },
22
- "files": [
23
- "build/src/"
24
- ],
25
- "dependencies": {
26
- "@keymanapp/common-types": "19.0.145-alpha",
27
- "@keymanapp/developer-utils": "19.0.145-alpha",
28
- "@keymanapp/kmc-kmn": "19.0.145-alpha"
29
- },
30
- "devDependencies": {
31
- "@keymanapp/resources-gosh": "19.0.145-alpha",
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
- "version": "19.0.145-alpha"
49
- }
1
+ {
2
+ "name": "@keymanapp/kmc-analyze",
3
+ "description": "Keyman Developer Compiler Module - keyboard analysis tools",
4
+ "keywords": [
5
+ "keyboard",
6
+ "keyman",
7
+ "unicode"
8
+ ],
9
+ "scripts": {
10
+ "build": "gosh ./build.sh build",
11
+ "test": "gosh ./build.sh test"
12
+ },
13
+ "type": "module",
14
+ "author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
15
+ "license": "MIT",
16
+ "bugs": {
17
+ "url": "https://github.com/keymanapp/keyman/issues"
18
+ },
19
+ "exports": {
20
+ ".": "./build/src/index.js"
21
+ },
22
+ "files": [
23
+ "build/src/"
24
+ ],
25
+ "dependencies": {
26
+ "@keymanapp/common-types": "19.0.151-alpha",
27
+ "@keymanapp/developer-utils": "19.0.151-alpha",
28
+ "@keymanapp/kmc-kmn": "19.0.151-alpha"
29
+ },
30
+ "devDependencies": {
31
+ "@keymanapp/resources-gosh": "19.0.151-alpha",
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-analyze"
48
+ },
49
+ "version": "19.0.151-alpha"
50
+ }