This is an automated email from the ASF dual-hosted git repository.
alexkli pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-wskdebug.git.
from 35cbe91 remove node 8 in travis as we don't really support it and it
keeps failing fsevents tests (#33)
new 0097ab1 refactor huge debugger.js into separate files & classes
new 7290fc6 add missing EOL
new cd50058 guard this.* access in Debugger.shutdown()/stop()/kill()
new c07093d ensure latest yargs 15.3.0 is used as #17 depends on it
new 8eebc66 add complete invocation test for ngrok (failing for now)
new 2da4644 quick fix for ngrok agent requiring access to invoker
new 397aa85 fix duplicated shutdown() issue on CTRL+C
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.eslintignore | 1 +
package-lock.json | 47 +++-
package.json | 3 +-
src/agentmgr.js | 503 +++++++++++++++++++++++++++++++++++++
src/agents/ngrok.js | 140 +++++++++++
src/debugger.js | 705 ++++------------------------------------------------
src/watcher.js | 123 +++++++++
test/ngrok.test.js | 133 +++++++++-
test/test.js | 85 +++++--
9 files changed, 1049 insertions(+), 691 deletions(-)
create mode 100644 .eslintignore
create mode 100644 src/agentmgr.js
create mode 100644 src/agents/ngrok.js
create mode 100644 src/watcher.js