runwork 0.10.2 → 0.10.3

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.
@@ -12,6 +12,10 @@ export function parseKeypress(data) {
12
12
  case 'e': return 'e';
13
13
  case 'r': return 'r';
14
14
  case 'i': return 'i';
15
+ // 's' is consumed by `runwork dev attach` to stop the attached
16
+ // session. Other commands ignore it. We parse it centrally so the
17
+ // raw keypress doesn't leak through as a `null` action.
18
+ case 's': return 's';
15
19
  case 'q': return 'quit';
16
20
  default: return null;
17
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "runwork",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "description": "CLI for Runwork: develop, preview, and deploy Runwork apps from your local machine.",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Runwork <info@runwork.ai> (https://www.runwork.ai)",