@keymanapp/developer-utils 18.0.137-alpha → 18.0.138-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/build/src/compiler-callbacks.d.ts +145 -0
- package/build/src/compiler-callbacks.d.ts.map +1 -0
- package/build/src/compiler-callbacks.js +128 -0
- package/build/src/compiler-callbacks.js.map +1 -0
- package/build/src/compiler-interfaces.d.ts +10 -102
- package/build/src/compiler-interfaces.d.ts.map +1 -1
- package/build/src/compiler-interfaces.js +10 -86
- package/build/src/compiler-interfaces.js.map +1 -1
- package/build/src/index.d.ts +6 -2
- package/build/src/index.d.ts.map +1 -1
- package/build/src/index.js +8 -4
- package/build/src/index.js.map +1 -1
- package/build/src/source-filename-patterns.d.ts +31 -0
- package/build/src/source-filename-patterns.d.ts.map +1 -0
- package/build/src/source-filename-patterns.js +43 -0
- package/build/src/source-filename-patterns.js.map +1 -0
- package/build/src/types/kpj/keyman-developer-project.d.ts +9 -8
- package/build/src/types/kpj/keyman-developer-project.d.ts.map +1 -1
- package/build/src/types/kpj/keyman-developer-project.js +26 -22
- package/build/src/types/kpj/keyman-developer-project.js.map +1 -1
- package/build/src/types/kpj/kpj-file-reader.d.ts +3 -3
- package/build/src/types/kpj/kpj-file-reader.d.ts.map +1 -1
- package/build/src/types/kpj/kpj-file-reader.js +5 -5
- package/build/src/types/kpj/kpj-file-reader.js.map +1 -1
- package/build/src/types/kpj/kpj-file-writer.d.ts +10 -0
- package/build/src/types/kpj/kpj-file-writer.d.ts.map +1 -0
- package/build/src/types/kpj/kpj-file-writer.js +92 -0
- package/build/src/types/kpj/kpj-file-writer.js.map +1 -0
- package/build/src/types/kps/kps-file-reader.d.ts +1 -1
- package/build/src/types/kps/kps-file-reader.d.ts.map +1 -1
- package/build/src/types/ldml-keyboard/ldml-keyboard-xml-reader.d.ts +1 -1
- package/build/src/types/ldml-keyboard/ldml-keyboard-xml-reader.d.ts.map +1 -1
- package/build/src/utils/UrlSubpathCompilerCallback.d.ts +17 -0
- package/build/src/utils/UrlSubpathCompilerCallback.d.ts.map +1 -0
- package/build/src/utils/UrlSubpathCompilerCallback.js +43 -0
- package/build/src/utils/UrlSubpathCompilerCallback.js.map +1 -0
- package/build/test/kpj/test-kpj-file-reader.js +8 -8
- package/build/test/kpj/test-kpj-file-reader.js.map +1 -1
- package/build/test/kpj/test-kpj-file-writer.d.ts +2 -0
- package/build/test/kpj/test-kpj-file-writer.d.ts.map +1 -0
- package/build/test/kpj/test-kpj-file-writer.js +71 -0
- package/build/test/kpj/test-kpj-file-writer.js.map +1 -0
- package/build/test/tsconfig.tsbuildinfo +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -9,10 +9,11 @@
|
|
|
9
9
|
"/build/"
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@keymanapp/common-types": "18.0.
|
|
12
|
+
"@keymanapp/common-types": "18.0.138-alpha",
|
|
13
13
|
"@sentry/node": "^7.57.0",
|
|
14
14
|
"eventemitter3": "^5.0.0",
|
|
15
15
|
"fast-xml-parser": "^4.5.0",
|
|
16
|
+
"path-browserify": "^1.0.1",
|
|
16
17
|
"restructure": "^3.0.1",
|
|
17
18
|
"sax": ">=0.6.0",
|
|
18
19
|
"semver": "^7.5.4",
|
|
@@ -21,6 +22,7 @@
|
|
|
21
22
|
"devDependencies": {
|
|
22
23
|
"@types/git-diff": "^2.0.3",
|
|
23
24
|
"@types/node": "^20.4.1",
|
|
25
|
+
"@types/path-browserify": "^1.0.3",
|
|
24
26
|
"@types/semver": "^7.3.12",
|
|
25
27
|
"c8": "^7.12.0",
|
|
26
28
|
"git-diff": "^2.0.6",
|
|
@@ -45,5 +47,5 @@
|
|
|
45
47
|
"type": "git",
|
|
46
48
|
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
47
49
|
},
|
|
48
|
-
"version": "18.0.
|
|
50
|
+
"version": "18.0.138-alpha"
|
|
49
51
|
}
|