dreaction-protocol 1.0.0 → 1.0.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/lib/command.js CHANGED
@@ -27,7 +27,7 @@ exports.CommandType = {
27
27
  Clear: 'clear',
28
28
  ReplLsResponse: 'repl.ls.response',
29
29
  ReplExecuteResponse: 'repl.execute.response',
30
- // these technically are commands only in reactotron-react-native, but I felt lazy so they can live here
30
+ // these technically are commands only in dreaction-react-native, but I felt lazy so they can live here
31
31
  DevtoolsOpen: 'devtools.open',
32
32
  DevtoolsReload: 'devtools.reload',
33
33
  EditorOpen: 'editor.open',
@@ -26,7 +26,7 @@ export interface CertServerOptions {
26
26
  }
27
27
  export type WssServerOptions = PfxServerOptions | CertServerOptions;
28
28
  /**
29
- * Configuration options for the Reactotron server.
29
+ * Configuration options for the DReaction server.
30
30
  */
31
31
  export interface ServerOptions {
32
32
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dreaction-protocol",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "private": false,
5
5
  "description": "",
6
6
  "main": "lib/index.js",
package/src/command.ts CHANGED
@@ -42,7 +42,7 @@ export const CommandType = {
42
42
  Clear: 'clear',
43
43
  ReplLsResponse: 'repl.ls.response',
44
44
  ReplExecuteResponse: 'repl.execute.response',
45
- // these technically are commands only in reactotron-react-native, but I felt lazy so they can live here
45
+ // these technically are commands only in dreaction-react-native, but I felt lazy so they can live here
46
46
  DevtoolsOpen: 'devtools.open',
47
47
  DevtoolsReload: 'devtools.reload',
48
48
  EditorOpen: 'editor.open',
@@ -30,7 +30,7 @@ export interface CertServerOptions {
30
30
  export type WssServerOptions = PfxServerOptions | CertServerOptions;
31
31
 
32
32
  /**
33
- * Configuration options for the Reactotron server.
33
+ * Configuration options for the DReaction server.
34
34
  */
35
35
  export interface ServerOptions {
36
36
  /**