@expo/devtools 0.0.1 → 0.1.1

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/index.d.ts CHANGED
@@ -3,4 +3,8 @@ export { setEnableLogging } from './logger';
3
3
  export { getDevToolsPluginClientAsync } from './DevToolsPluginClientFactory';
4
4
  export { DevToolsPluginClient } from './DevToolsPluginClient';
5
5
  export type { EventSubscription } from './DevToolsPluginClient';
6
+ export type * from './devtools.types';
7
+ export { createDevToolsPluginClient as unstable_createDevToolsPluginClient } from './DevToolsPluginClientFactory';
8
+ export { WebSocketBackingStore as unstable_WebSocketBackingStore } from './WebSocketBackingStore';
9
+ export { getConnectionInfo as unstable_getConnectionInfo } from './getConnectionInfo';
6
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,4BAA4B,EAAE,MAAM,+BAA+B,CAAC;AAC7E,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAG9D,YAAY,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,4BAA4B,EAAE,MAAM,+BAA+B,CAAC;AAC7E,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAG9D,YAAY,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAChE,mBAAmB,kBAAkB,CAAC;AAGtC,OAAO,EAAE,0BAA0B,IAAI,mCAAmC,EAAE,MAAM,+BAA+B,CAAC;AAClH,OAAO,EAAE,qBAAqB,IAAI,8BAA8B,EAAE,MAAM,yBAAyB,CAAC;AAClG,OAAO,EAAE,iBAAiB,IAAI,0BAA0B,EAAE,MAAM,qBAAqB,CAAC"}
package/build/index.js CHANGED
@@ -2,4 +2,8 @@ export * from './hooks';
2
2
  export { setEnableLogging } from './logger';
3
3
  export { getDevToolsPluginClientAsync } from './DevToolsPluginClientFactory';
4
4
  export { DevToolsPluginClient } from './DevToolsPluginClient';
5
+ // Unstable APIs exported for testing purposes.
6
+ export { createDevToolsPluginClient as unstable_createDevToolsPluginClient } from './DevToolsPluginClientFactory';
7
+ export { WebSocketBackingStore as unstable_WebSocketBackingStore } from './WebSocketBackingStore';
8
+ export { getConnectionInfo as unstable_getConnectionInfo } from './getConnectionInfo';
5
9
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,4BAA4B,EAAE,MAAM,+BAA+B,CAAC;AAC7E,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC","sourcesContent":["export * from './hooks';\nexport { setEnableLogging } from './logger';\nexport { getDevToolsPluginClientAsync } from './DevToolsPluginClientFactory';\nexport { DevToolsPluginClient } from './DevToolsPluginClient';\n\n// Export the EventSubscription type if people need to use explicit type from `addMessageListener`\nexport type { EventSubscription } from './DevToolsPluginClient';\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,4BAA4B,EAAE,MAAM,+BAA+B,CAAC;AAC7E,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAM9D,+CAA+C;AAC/C,OAAO,EAAE,0BAA0B,IAAI,mCAAmC,EAAE,MAAM,+BAA+B,CAAC;AAClH,OAAO,EAAE,qBAAqB,IAAI,8BAA8B,EAAE,MAAM,yBAAyB,CAAC;AAClG,OAAO,EAAE,iBAAiB,IAAI,0BAA0B,EAAE,MAAM,qBAAqB,CAAC","sourcesContent":["export * from './hooks';\nexport { setEnableLogging } from './logger';\nexport { getDevToolsPluginClientAsync } from './DevToolsPluginClientFactory';\nexport { DevToolsPluginClient } from './DevToolsPluginClient';\n\n// Export the EventSubscription type if people need to use explicit type from `addMessageListener`\nexport type { EventSubscription } from './DevToolsPluginClient';\nexport type * from './devtools.types';\n\n// Unstable APIs exported for testing purposes.\nexport { createDevToolsPluginClient as unstable_createDevToolsPluginClient } from './DevToolsPluginClientFactory';\nexport { WebSocketBackingStore as unstable_WebSocketBackingStore } from './WebSocketBackingStore';\nexport { getConnectionInfo as unstable_getConnectionInfo } from './getConnectionInfo';\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/devtools",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "description": "DevTools plugin helpers for Expo",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -46,7 +46,7 @@
46
46
  "chalk": "^4.1.2"
47
47
  },
48
48
  "devDependencies": {
49
- "expo-module-scripts": "^4.1.7",
49
+ "expo-module-scripts": "^5.0.1",
50
50
  "ws": "^8.18.0"
51
51
  },
52
52
  "peerDependencies": {
@@ -60,5 +60,6 @@
60
60
  "react-native": {
61
61
  "optional": true
62
62
  }
63
- }
63
+ },
64
+ "gitHead": "2f7f90d0736af48cb542ccbc8addb836e330693a"
64
65
  }