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 +1 -1
- package/lib/server-events.d.ts +1 -1
- package/package.json +1 -1
- package/src/command.ts +1 -1
- package/src/server-events.ts +1 -1
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
|
|
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',
|
package/lib/server-events.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export interface CertServerOptions {
|
|
|
26
26
|
}
|
|
27
27
|
export type WssServerOptions = PfxServerOptions | CertServerOptions;
|
|
28
28
|
/**
|
|
29
|
-
* Configuration options for the
|
|
29
|
+
* Configuration options for the DReaction server.
|
|
30
30
|
*/
|
|
31
31
|
export interface ServerOptions {
|
|
32
32
|
/**
|
package/package.json
CHANGED
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
|
|
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',
|
package/src/server-events.ts
CHANGED
|
@@ -30,7 +30,7 @@ export interface CertServerOptions {
|
|
|
30
30
|
export type WssServerOptions = PfxServerOptions | CertServerOptions;
|
|
31
31
|
|
|
32
32
|
/**
|
|
33
|
-
* Configuration options for the
|
|
33
|
+
* Configuration options for the DReaction server.
|
|
34
34
|
*/
|
|
35
35
|
export interface ServerOptions {
|
|
36
36
|
/**
|