@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.
Files changed (45) hide show
  1. package/build/src/compiler-callbacks.d.ts +145 -0
  2. package/build/src/compiler-callbacks.d.ts.map +1 -0
  3. package/build/src/compiler-callbacks.js +128 -0
  4. package/build/src/compiler-callbacks.js.map +1 -0
  5. package/build/src/compiler-interfaces.d.ts +10 -102
  6. package/build/src/compiler-interfaces.d.ts.map +1 -1
  7. package/build/src/compiler-interfaces.js +10 -86
  8. package/build/src/compiler-interfaces.js.map +1 -1
  9. package/build/src/index.d.ts +6 -2
  10. package/build/src/index.d.ts.map +1 -1
  11. package/build/src/index.js +8 -4
  12. package/build/src/index.js.map +1 -1
  13. package/build/src/source-filename-patterns.d.ts +31 -0
  14. package/build/src/source-filename-patterns.d.ts.map +1 -0
  15. package/build/src/source-filename-patterns.js +43 -0
  16. package/build/src/source-filename-patterns.js.map +1 -0
  17. package/build/src/types/kpj/keyman-developer-project.d.ts +9 -8
  18. package/build/src/types/kpj/keyman-developer-project.d.ts.map +1 -1
  19. package/build/src/types/kpj/keyman-developer-project.js +26 -22
  20. package/build/src/types/kpj/keyman-developer-project.js.map +1 -1
  21. package/build/src/types/kpj/kpj-file-reader.d.ts +3 -3
  22. package/build/src/types/kpj/kpj-file-reader.d.ts.map +1 -1
  23. package/build/src/types/kpj/kpj-file-reader.js +5 -5
  24. package/build/src/types/kpj/kpj-file-reader.js.map +1 -1
  25. package/build/src/types/kpj/kpj-file-writer.d.ts +10 -0
  26. package/build/src/types/kpj/kpj-file-writer.d.ts.map +1 -0
  27. package/build/src/types/kpj/kpj-file-writer.js +92 -0
  28. package/build/src/types/kpj/kpj-file-writer.js.map +1 -0
  29. package/build/src/types/kps/kps-file-reader.d.ts +1 -1
  30. package/build/src/types/kps/kps-file-reader.d.ts.map +1 -1
  31. package/build/src/types/ldml-keyboard/ldml-keyboard-xml-reader.d.ts +1 -1
  32. package/build/src/types/ldml-keyboard/ldml-keyboard-xml-reader.d.ts.map +1 -1
  33. package/build/src/utils/UrlSubpathCompilerCallback.d.ts +17 -0
  34. package/build/src/utils/UrlSubpathCompilerCallback.d.ts.map +1 -0
  35. package/build/src/utils/UrlSubpathCompilerCallback.js +43 -0
  36. package/build/src/utils/UrlSubpathCompilerCallback.js.map +1 -0
  37. package/build/test/kpj/test-kpj-file-reader.js +8 -8
  38. package/build/test/kpj/test-kpj-file-reader.js.map +1 -1
  39. package/build/test/kpj/test-kpj-file-writer.d.ts +2 -0
  40. package/build/test/kpj/test-kpj-file-writer.d.ts.map +1 -0
  41. package/build/test/kpj/test-kpj-file-writer.js +71 -0
  42. package/build/test/kpj/test-kpj-file-writer.js.map +1 -0
  43. package/build/test/tsconfig.tsbuildinfo +1 -1
  44. package/build/tsconfig.tsbuildinfo +1 -1
  45. 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.137-alpha",
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.137-alpha"
50
+ "version": "18.0.138-alpha"
49
51
  }