Skip to content

Commit 2b0396f

Browse files
committed
3.3.5: remove .babelrc from NPM package (related to versatica#489)
1 parent 93940bc commit 2b0396f

File tree

5 files changed

+35
-27
lines changed

5 files changed

+35
-27
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/node_modules/
22
/dist/
33
/.gitignore
4+
/.babelrc
45
/NO_GIT/
56

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
CHANGELOG
22
=========
33

4+
Version 3.3.5 (released in 2019-02-26)
5+
---------------------------------------
6+
7+
* Add `.babelrc` into `.npmignore` (related to #489).
8+
* Update deps.
9+
10+
411
Version 3.3.4 (released in 2019-01-15)
512
---------------------------------------
613

dist/jssip.js

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* JsSIP v3.3.4
2+
* JsSIP v3.3.5
33
* the Javascript SIP library
44
* Copyright: 2012-2019 José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)
55
* Homepage: https://jssip.net
@@ -22330,12 +22330,12 @@ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) ===
2233022330

2233122331
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
2233222332

22333+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
22334+
2233322335
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
2233422336

2233522337
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
2233622338

22337-
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
22338-
2233922339
var EventEmitter = require('events').EventEmitter;
2234022340

2234122341
var JsSIP_C = require('./Constants');
@@ -22392,7 +22392,7 @@ function (_EventEmitter) {
2239222392

2239322393
_this.request.setHeader('via', via);
2239422394

22395-
_this.ua.newTransaction(_assertThisInitialized(_assertThisInitialized(_this)));
22395+
_this.ua.newTransaction(_assertThisInitialized(_this));
2239622396

2239722397
return _this;
2239822398
}
@@ -22506,13 +22506,13 @@ function (_EventEmitter2) {
2250622506
_this4.transport = transport;
2250722507
_this4.request = request;
2250822508
_this4.eventHandlers = eventHandlers;
22509-
request.transaction = _assertThisInitialized(_assertThisInitialized(_this4));
22509+
request.transaction = _assertThisInitialized(_this4);
2251022510
var via = "SIP/2.0/".concat(transport.via_transport);
2251122511
via += " ".concat(ua.configuration.via_host, ";branch=").concat(_this4.id);
2251222512

2251322513
_this4.request.setHeader('via', via);
2251422514

22515-
_this4.ua.newTransaction(_assertThisInitialized(_assertThisInitialized(_this4)));
22515+
_this4.ua.newTransaction(_assertThisInitialized(_this4));
2251622516

2251722517
return _this4;
2251822518
}
@@ -22746,9 +22746,9 @@ function (_EventEmitter4) {
2274622746
_this9.transport = transport;
2274722747
_this9.request = request;
2274822748
_this9.last_response = '';
22749-
request.server_transaction = _assertThisInitialized(_assertThisInitialized(_this9));
22749+
request.server_transaction = _assertThisInitialized(_this9);
2275022750
_this9.state = C.STATUS_TRYING;
22751-
ua.newTransaction(_assertThisInitialized(_assertThisInitialized(_this9)));
22751+
ua.newTransaction(_assertThisInitialized(_this9));
2275222752
return _this9;
2275322753
}
2275422754

@@ -22866,9 +22866,9 @@ function (_EventEmitter5) {
2286622866
_this11.transport = transport;
2286722867
_this11.request = request;
2286822868
_this11.last_response = '';
22869-
request.server_transaction = _assertThisInitialized(_assertThisInitialized(_this11));
22869+
request.server_transaction = _assertThisInitialized(_this11);
2287022870
_this11.state = C.STATUS_PROCEEDING;
22871-
ua.newTransaction(_assertThisInitialized(_assertThisInitialized(_this11)));
22871+
ua.newTransaction(_assertThisInitialized(_this11));
2287222872
_this11.resendProvisionalTimer = null;
2287322873
request.reply(100);
2287422874
return _this11;
@@ -23475,6 +23475,8 @@ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) ===
2347523475

2347623476
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
2347723477

23478+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
23479+
2347823480
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
2347923481

2348023482
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
@@ -23483,8 +23485,6 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
2348323485

2348423486
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
2348523487

23486-
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
23487-
2348823488
var EventEmitter = require('events').EventEmitter;
2348923489

2349023490
var JsSIP_C = require('./Constants');
@@ -23595,7 +23595,7 @@ function (_EventEmitter) {
2359523595
} // Initialize registrator.
2359623596

2359723597

23598-
_this._registrator = new Registrator(_assertThisInitialized(_assertThisInitialized(_this)));
23598+
_this._registrator = new Registrator(_assertThisInitialized(_this));
2359923599
return _this;
2360023600
}
2360123601

@@ -27739,12 +27739,11 @@ module.exports={
2773927739
"name": "jssip",
2774027740
"title": "JsSIP",
2774127741
"description": "the Javascript SIP library",
27742-
"version": "3.3.4",
27742+
"version": "3.3.5",
2774327743
"homepage": "https://jssip.net",
2774427744
"author": "José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
2774527745
"contributors": [
27746-
"Iñaki Baz Castillo <ibc@aliax.net> (https://github.com/ibc)",
27747-
"Saúl Ibarra Corretgé <saghul@gmail.com> (https://github.com/saghul)"
27746+
"Iñaki Baz Castillo <ibc@aliax.net> (https://github.com/ibc)"
2774827747
],
2774927748
"main": "lib-es5/JsSIP.js",
2775027749
"keywords": [
@@ -27769,11 +27768,11 @@ module.exports={
2776927768
"sdp-transform": "^2.7.0"
2777027769
},
2777127770
"devDependencies": {
27772-
"@babel/core": "^7.2.2",
27773-
"@babel/preset-env": "^7.2.3",
27771+
"@babel/core": "^7.3.4",
27772+
"@babel/preset-env": "^7.3.4",
2777427773
"ansi-colors": "^3.2.3",
2777527774
"browserify": "^16.2.3",
27776-
"eslint": "^5.12.0",
27775+
"eslint": "^5.14.1",
2777727776
"fancy-log": "^1.3.3",
2777827777
"gulp": "^4.0.0",
2777927778
"gulp-babel": "^8.0.0",
@@ -27789,6 +27788,7 @@ module.exports={
2778927788
"vinyl-source-stream": "^2.0.0"
2779027789
},
2779127790
"scripts": {
27791+
"lint": "gulp lint",
2779227792
"test": "gulp test",
2779327793
"prepublishOnly": "gulp babel"
2779427794
}

dist/jssip.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22
"name": "jssip",
33
"title": "JsSIP",
44
"description": "the Javascript SIP library",
5-
"version": "3.3.4",
5+
"version": "3.3.5",
66
"homepage": "https://jssip.net",
77
"author": "José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
88
"contributors": [
9-
"Iñaki Baz Castillo <ibc@aliax.net> (https://github.com/ibc)",
10-
"Saúl Ibarra Corretgé <saghul@gmail.com> (https://github.com/saghul)"
9+
"Iñaki Baz Castillo <ibc@aliax.net> (https://github.com/ibc)"
1110
],
1211
"main": "lib-es5/JsSIP.js",
1312
"keywords": [
@@ -32,11 +31,11 @@
3231
"sdp-transform": "^2.7.0"
3332
},
3433
"devDependencies": {
35-
"@babel/core": "^7.2.2",
36-
"@babel/preset-env": "^7.2.3",
34+
"@babel/core": "^7.3.4",
35+
"@babel/preset-env": "^7.3.4",
3736
"ansi-colors": "^3.2.3",
3837
"browserify": "^16.2.3",
39-
"eslint": "^5.12.0",
38+
"eslint": "^5.14.1",
4039
"fancy-log": "^1.3.3",
4140
"gulp": "^4.0.0",
4241
"gulp-babel": "^8.0.0",
@@ -52,6 +51,7 @@
5251
"vinyl-source-stream": "^2.0.0"
5352
},
5453
"scripts": {
54+
"lint": "gulp lint",
5555
"test": "gulp test",
5656
"prepublishOnly": "gulp babel"
5757
}

0 commit comments

Comments
 (0)