@webex/internal-plugin-device 2.52.6 → 2.52.8
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.
- package/.eslintrc.js +6 -0
- package/babel.config.js +3 -0
- package/dist/device.js +1 -1
- package/jest.config.js +3 -0
- package/package.json +26 -10
- package/process +1 -0
package/.eslintrc.js
ADDED
package/babel.config.js
ADDED
package/dist/device.js
CHANGED
|
@@ -716,7 +716,7 @@ var Device = _webexCore.WebexPlugin.extend((_dec = (0, _webexCore.waitForValue)(
|
|
|
716
716
|
_this9.resetLogoutTimer();
|
|
717
717
|
});
|
|
718
718
|
} /* eslint-enable require-jsdoc */,
|
|
719
|
-
version: "2.52.
|
|
719
|
+
version: "2.52.8"
|
|
720
720
|
}, ((0, _applyDecoratedDescriptor2.default)(_obj, "refresh", [_common.oneFlight, _dec], (0, _getOwnPropertyDescriptor.default)(_obj, "refresh"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "register", [_common.oneFlight, _dec2], (0, _getOwnPropertyDescriptor.default)(_obj, "register"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "unregister", [_common.oneFlight, _dec3], (0, _getOwnPropertyDescriptor.default)(_obj, "unregister"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "markUrlFailedAndGetNew", [_dec4], (0, _getOwnPropertyDescriptor.default)(_obj, "markUrlFailedAndGetNew"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "initialize", [_dec5], (0, _getOwnPropertyDescriptor.default)(_obj, "initialize"), _obj)), _obj)));
|
|
721
721
|
var _default = Device;
|
|
722
722
|
exports.default = _default;
|
package/jest.config.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/internal-plugin-device",
|
|
3
|
-
"version": "2.52.
|
|
3
|
+
"version": "2.52.8",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Timothy Scheuering <timsch@cisco.com>",
|
|
@@ -21,22 +21,38 @@
|
|
|
21
21
|
]
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@
|
|
25
|
-
"@webex/
|
|
26
|
-
"@webex/
|
|
24
|
+
"@babel/core": "^7.17.10",
|
|
25
|
+
"@webex/babel-config-legacy": "2.52.8",
|
|
26
|
+
"@webex/eslint-config-legacy": "2.52.8",
|
|
27
|
+
"@webex/jest-config-legacy": "2.52.8",
|
|
28
|
+
"@webex/legacy-tools": "2.52.8",
|
|
29
|
+
"@webex/test-helper-chai": "2.52.8",
|
|
30
|
+
"@webex/test-helper-mocha": "2.52.8",
|
|
31
|
+
"@webex/test-helper-mock-webex": "2.52.8",
|
|
32
|
+
"@webex/test-helper-test-users": "2.52.8",
|
|
27
33
|
"chai": "^4.3.4",
|
|
28
34
|
"chai-as-promised": "^7.1.1",
|
|
35
|
+
"eslint": "^8.24.0",
|
|
36
|
+
"prettier": "^2.7.1",
|
|
29
37
|
"sinon": "^9.2.4"
|
|
30
38
|
},
|
|
31
39
|
"dependencies": {
|
|
32
|
-
"@webex/common": "2.52.
|
|
33
|
-
"@webex/common-timers": "2.52.
|
|
34
|
-
"@webex/http-core": "2.52.
|
|
35
|
-
"@webex/internal-plugin-
|
|
36
|
-
"@webex/
|
|
37
|
-
"@webex/webex-core": "2.52.6",
|
|
40
|
+
"@webex/common": "2.52.8",
|
|
41
|
+
"@webex/common-timers": "2.52.8",
|
|
42
|
+
"@webex/http-core": "2.52.8",
|
|
43
|
+
"@webex/internal-plugin-metrics": "2.52.8",
|
|
44
|
+
"@webex/webex-core": "2.52.8",
|
|
38
45
|
"ampersand-collection": "^2.0.2",
|
|
39
46
|
"ampersand-state": "^5.0.3",
|
|
40
47
|
"lodash": "^4.17.21"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "yarn build:src",
|
|
51
|
+
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
|
|
52
|
+
"test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
|
|
53
|
+
"test:browser": "webex-legacy-tools test --integration --unit --runner karma",
|
|
54
|
+
"test:integration": "webex-legacy-tools test --integration --runner mocha",
|
|
55
|
+
"test:style": "eslint ./src/**/*.*",
|
|
56
|
+
"test:unit": "webex-legacy-tools test --unit --runner jest"
|
|
41
57
|
}
|
|
42
58
|
}
|
package/process
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = {browser: true};
|