@matter/main 0.11.0-alpha.0-20241027-e40e1664f → 0.11.0-alpha.0-20241027-de3c9d280

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,5 +3,5 @@
3
3
  * Copyright 2022-2024 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
- import "@matter/react-native";
6
+ export {};
7
7
  //# sourceMappingURL=react-native.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"react-native.d.ts","sourceRoot":"","sources":["../../../src/platform/react-native.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAKH,OAAO,sBAAsB,CAAC"}
1
+ {"version":3,"file":"react-native.d.ts","sourceRoot":"","sources":["../../../src/platform/react-native.ts"],"names":[],"mappings":"AAAA;;;;GAIG"}
@@ -1,5 +1,4 @@
1
1
  "use strict";
2
- var import_react_native = require("@matter/react-native");
3
2
  /**
4
3
  * @license
5
4
  * Copyright 2022-2024 Matter.js Authors
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/platform/react-native.ts"],
4
- "mappings": ";AASA,0BAAO;AATP;AAAA;AAAA;AAAA;AAAA;",
4
+ "mappings": ";AAAA;AAAA;AAAA;AAAA;AAAA;",
5
5
  "names": []
6
6
  }
@@ -3,5 +3,5 @@
3
3
  * Copyright 2022-2024 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
- import "@matter/react-native";
6
+ export {};
7
7
  //# sourceMappingURL=react-native.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"react-native.d.ts","sourceRoot":"","sources":["../../../src/platform/react-native.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAKH,OAAO,sBAAsB,CAAC"}
1
+ {"version":3,"file":"react-native.d.ts","sourceRoot":"","sources":["../../../src/platform/react-native.ts"],"names":[],"mappings":"AAAA;;;;GAIG"}
@@ -3,5 +3,4 @@
3
3
  * Copyright 2022-2024 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
- import "@matter/react-native";
7
6
  //# sourceMappingURL=react-native.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/platform/react-native.ts"],
4
- "mappings": "AAAA;AAAA;AAAA;AAAA;AAAA;AASA,OAAO;",
4
+ "mappings": "AAAA;AAAA;AAAA;AAAA;AAAA;",
5
5
  "names": []
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matter/main",
3
- "version": "0.11.0-alpha.0-20241027-e40e1664f",
3
+ "version": "0.11.0-alpha.0-20241027-de3c9d280",
4
4
  "description": "Matter.js main entrypoint",
5
5
  "keywords": [
6
6
  "iot",
@@ -41,19 +41,18 @@
41
41
  "#*": "./src/*"
42
42
  },
43
43
  "dependencies": {
44
- "@matter/general": "0.11.0-alpha.0-20241027-e40e1664f",
45
- "@matter/model": "0.11.0-alpha.0-20241027-e40e1664f",
46
- "@matter/node": "0.11.0-alpha.0-20241027-e40e1664f",
47
- "@matter/protocol": "0.11.0-alpha.0-20241027-e40e1664f",
48
- "@matter/types": "0.11.0-alpha.0-20241027-e40e1664f",
44
+ "@matter/general": "0.11.0-alpha.0-20241027-de3c9d280",
45
+ "@matter/model": "0.11.0-alpha.0-20241027-de3c9d280",
46
+ "@matter/node": "0.11.0-alpha.0-20241027-de3c9d280",
47
+ "@matter/protocol": "0.11.0-alpha.0-20241027-de3c9d280",
48
+ "@matter/types": "0.11.0-alpha.0-20241027-de3c9d280",
49
49
  "@noble/curves": "^1.5.0"
50
50
  },
51
51
  "optionalDependencies": {
52
- "@matter/nodejs": "0.11.0-alpha.0-20241027-e40e1664f",
53
- "@matter/react-native": "0.11.0-alpha.0-20241027-e40e1664f"
52
+ "@matter/nodejs": "0.11.0-alpha.0-20241027-de3c9d280"
54
53
  },
55
54
  "devDependencies": {
56
- "@matter/tools": "0.11.0-alpha.0-20241027-e40e1664f"
55
+ "@matter/tools": "0.11.0-alpha.0-20241027-de3c9d280"
57
56
  },
58
57
  "files": [
59
58
  "dist/**/*",
@@ -7,4 +7,5 @@
7
7
  // This file is loaded in React Native via export condition. Currently metro requires you to enable the option
8
8
  // "resolver.unstable_enablePackageExports" for this to work
9
9
 
10
- import "@matter/react-native";
10
+ // React native must load separately. It expands our dependencies far too much to be a default dependency
11
+ //import "@matter/react-native";
package/src/tsconfig.json CHANGED
@@ -22,9 +22,6 @@
22
22
  {
23
23
  "path": "../../protocol/src"
24
24
  },
25
- {
26
- "path": "../../react-native/src"
27
- },
28
25
  {
29
26
  "path": "../../types/src"
30
27
  }