@webex/plugin-rooms 2.52.5 → 2.52.7

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 ADDED
@@ -0,0 +1,6 @@
1
+ const config = {
2
+ root: true,
3
+ extends: ['@webex/eslint-config-legacy'],
4
+ };
5
+
6
+ module.exports = config;
@@ -0,0 +1,3 @@
1
+ const babelConfigLegacy = require('@webex/babel-config-legacy');
2
+
3
+ module.exports = babelConfigLegacy;
package/dist/rooms.js CHANGED
@@ -490,7 +490,7 @@ var Rooms = _webexCore.WebexPlugin.extend({
490
490
  return null;
491
491
  }
492
492
  },
493
- version: "2.52.5"
493
+ version: "2.52.7"
494
494
  });
495
495
  var _default = Rooms;
496
496
  /**
package/jest.config.js ADDED
@@ -0,0 +1,3 @@
1
+ const config = require('@webex/jest-config-legacy');
2
+
3
+ module.exports = config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/plugin-rooms",
3
- "version": "2.52.5",
3
+ "version": "2.52.7",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -20,21 +20,38 @@
20
20
  ]
21
21
  },
22
22
  "devDependencies": {
23
- "@webex/test-helper-chai": "2.52.5",
24
- "@webex/test-helper-test-users": "2.52.5",
23
+ "@babel/core": "^7.17.10",
24
+ "@webex/babel-config-legacy": "2.52.7",
25
+ "@webex/eslint-config-legacy": "2.52.7",
26
+ "@webex/jest-config-legacy": "2.52.7",
27
+ "@webex/legacy-tools": "2.52.7",
28
+ "@webex/test-helper-chai": "2.52.7",
29
+ "@webex/test-helper-mocha": "2.52.7",
30
+ "@webex/test-helper-mock-webex": "2.52.7",
31
+ "@webex/test-helper-test-users": "2.52.7",
32
+ "eslint": "^8.24.0",
33
+ "prettier": "^2.7.1",
25
34
  "sinon": "^9.2.4"
26
35
  },
27
36
  "dependencies": {
28
- "@webex/common": "2.52.5",
29
- "@webex/internal-plugin-conversation": "2.52.5",
30
- "@webex/internal-plugin-mercury": "2.52.5",
31
- "@webex/plugin-logger": "2.52.5",
32
- "@webex/plugin-memberships": "2.52.5",
33
- "@webex/plugin-messages": "2.52.5",
34
- "@webex/plugin-people": "2.52.5",
35
- "@webex/plugin-rooms": "2.52.5",
36
- "@webex/webex-core": "2.52.5",
37
+ "@webex/common": "2.52.7",
38
+ "@webex/internal-plugin-conversation": "2.52.7",
39
+ "@webex/internal-plugin-mercury": "2.52.7",
40
+ "@webex/plugin-logger": "2.52.7",
41
+ "@webex/plugin-memberships": "2.52.7",
42
+ "@webex/plugin-messages": "2.52.7",
43
+ "@webex/plugin-people": "2.52.7",
44
+ "@webex/webex-core": "2.52.7",
37
45
  "debug": "^4.3.4",
38
46
  "lodash": "^4.17.21"
47
+ },
48
+ "scripts": {
49
+ "build": "yarn build:src",
50
+ "build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
51
+ "test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
52
+ "test:browser:broken": "webex-legacy-tools test --integration --unit --runner karma",
53
+ "test:integration:broken": "webex-legacy-tools test --integration --runner mocha",
54
+ "test:style": "eslint ./src/**/*.*",
55
+ "test:unit": "webex-legacy-tools test --unit --runner jest"
39
56
  }
40
57
  }
package/process ADDED
@@ -0,0 +1 @@
1
+ module.exports = {browser: true};