Skip to content
This repository has been archived by the owner on Jun 4, 2022. It is now read-only.

Commit

Permalink
allow Lumo to continue executing after being placed in background
Browse files Browse the repository at this point in the history
fixes #166
  • Loading branch information
anmonteiro committed May 19, 2017
1 parent 45e7eec commit 5276f03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

### Bug fixes

- Fix regression that prevented requiring binary modules ([#163](https://github.com/anmonteiro/lumo/issues/163)).
- Fix regression that prevented requiring binary modules ([#163](https://github.com/anmonteiro/lumo/issues/163)).
- Fix bug that prevented Lumo from continuing executing after being put in background ([#166](https://github.com/anmonteiro/lumo/issues/166)).

## [1.5.0](https://github.com/anmonteiro/lumo/compare/1.4.1...1.5.0) (2017-05-13)

Expand Down
1 change: 1 addition & 0 deletions src/js/repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ export default function startREPL(opts: CLIOptsType): void {
rl.on('line', (line: string) => processLine(session, line));
rl.on('SIGINT', () => handleSIGINT(session));
rl.on('close', () => stopREPL());
rl.on('SIGCONT', () => rl.prompt());

lastKeypressTime = currentTimeMicros();
process.stdin.on('keypress', (c: string, key: KeyType) =>
Expand Down

0 comments on commit 5276f03

Please sign in to comment.