@inlang/sdk 0.35.6 → 0.35.7

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.
@@ -33,6 +33,6 @@ function subscribable(fn) {
33
33
  // eslint-disable-next-line @typescript-eslint/ban-types
34
34
  function settleable(fn) {
35
35
  return Object.assign(fn, {
36
- settled: async () => { },
36
+ settled: async () => [],
37
37
  });
38
38
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@inlang/sdk",
3
3
  "type": "module",
4
- "version": "0.35.6",
4
+ "version": "0.35.7",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -34,17 +34,17 @@
34
34
  "murmurhash3js": "^3.0.1",
35
35
  "solid-js": "1.6.12",
36
36
  "throttle-debounce": "^5.0.0",
37
- "@inlang/json-types": "1.1.0",
38
37
  "@inlang/language-tag": "1.5.1",
39
- "@inlang/module": "1.2.13",
38
+ "@inlang/json-types": "1.1.0",
40
39
  "@inlang/message": "2.1.0",
40
+ "@inlang/module": "1.2.13",
41
41
  "@inlang/plugin": "2.4.13",
42
42
  "@inlang/project-settings": "2.4.2",
43
- "@inlang/message-lint-rule": "1.4.7",
44
43
  "@inlang/result": "1.1.0",
45
- "@lix-js/fs": "2.1.0",
46
44
  "@inlang/translatable": "1.3.1",
47
- "@lix-js/client": "2.2.0"
45
+ "@inlang/message-lint-rule": "1.4.7",
46
+ "@lix-js/client": "2.2.0",
47
+ "@lix-js/fs": "2.1.0"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@types/debug": "^4.1.12",
@@ -38,6 +38,6 @@ function subscribable(fn: Function) {
38
38
  // eslint-disable-next-line @typescript-eslint/ban-types
39
39
  function settleable(fn: Function) {
40
40
  return Object.assign(fn, {
41
- settled: async () => {},
41
+ settled: async () => [],
42
42
  })
43
43
  }