Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
James Criscuolo committed Feb 5, 2019
2 parents ccd97a4 + 48c328b commit 0e3474a
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 68 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ script:
- npm run buildAndTest

node_js:
- "6"
- "8"
- "stable"

cache:
Expand Down
117 changes: 58 additions & 59 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sip.js",
"title": "SIP.js",
"description": "A simple, intuitive, and powerful JavaScript signaling library",
"version": "0.13.0",
"version": "0.13.1",
"license": "MIT",
"main": "lib/index.js",
"homepage": "https://sipjs.com",
Expand All @@ -27,10 +27,10 @@
"crypto-js": "^3.1.9-1"
},
"devDependencies": {
"@types/node": "^10.12.20",
"@types/node": "^10.12.21",
"circular-dependency-plugin": "^5.0.2",
"jasmine-core": "^3.3.0",
"karma": "^3.1.4",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^2.0.1",
Expand All @@ -41,12 +41,12 @@
"ts-loader": "^5.3.3",
"ts-pegjs": "0.2.2",
"tslint": "^5.12.1",
"typescript": "^3.2.4",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
"typescript": "^3.3.1",
"webpack": "^4.29.1",
"webpack-cli": "^3.2.3"
},
"engines": {
"node": ">=6.0"
"node": ">=8.0"
},
"scripts": {
"prebuild": "tslint -p tsconfig.json -c tslint.json",
Expand Down
2 changes: 1 addition & 1 deletion src/UA.ts
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ export class UA extends EventEmitter implements UADefinition {
// unload is not available in packaged apps
if (!((global as any).chrome && (global as any).chrome.app && (global as any).chrome.app.runtime)) {
this.environListener = this.stop;
environment.addEventListener("unload", this.environListener);
environment.addEventListener("unload", this.environListener.bind(this));
}
}

Expand Down

0 comments on commit 0e3474a

Please sign in to comment.