@webex/internal-plugin-board 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 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/board.js CHANGED
@@ -709,7 +709,7 @@ var Board = _webexCore.WebexPlugin.extend({
709
709
  return _promise.default.resolve([]);
710
710
  });
711
711
  },
712
- version: "2.52.6"
712
+ version: "2.52.8"
713
713
  });
714
714
  var _default = Board;
715
715
  exports.default = _default;
package/dist/realtime.js CHANGED
@@ -221,7 +221,7 @@ var RealtimeService = _webexCore.WebexPlugin.extend({
221
221
  return _this7.realtimeChannels.remove(channel.channelId);
222
222
  }));
223
223
  },
224
- version: "2.52.6"
224
+ version: "2.52.8"
225
225
  });
226
226
  var _default = RealtimeService;
227
227
  exports.default = _default;
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/internal-plugin-board",
3
- "version": "2.52.6",
3
+ "version": "2.52.8",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "author": "Greg Hewett <ghewett@cisco.com>",
@@ -21,25 +21,40 @@
21
21
  ]
22
22
  },
23
23
  "devDependencies": {
24
- "@webex/test-helper-chai": "2.52.6",
25
- "@webex/test-helper-file": "2.52.6",
26
- "@webex/test-helper-mocha": "2.52.6",
27
- "@webex/test-helper-mock-web-socket": "2.52.6",
28
- "@webex/test-helper-mock-webex": "2.52.6",
29
- "@webex/test-helper-test-users": "2.52.6",
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-file": "2.52.8",
31
+ "@webex/test-helper-mocha": "2.52.8",
32
+ "@webex/test-helper-mock-web-socket": "2.52.8",
33
+ "@webex/test-helper-mock-webex": "2.52.8",
34
+ "@webex/test-helper-test-users": "2.52.8",
35
+ "eslint": "^8.24.0",
36
+ "prettier": "^2.7.1",
30
37
  "sinon": "^9.2.4"
31
38
  },
32
39
  "dependencies": {
33
- "@webex/common": "2.52.6",
34
- "@webex/internal-plugin-board": "2.52.6",
35
- "@webex/internal-plugin-conversation": "2.52.6",
36
- "@webex/internal-plugin-encryption": "2.52.6",
37
- "@webex/internal-plugin-feature": "2.52.6",
38
- "@webex/internal-plugin-mercury": "2.52.6",
39
- "@webex/webex-core": "2.52.6",
40
+ "@webex/common": "2.52.8",
41
+ "@webex/internal-plugin-conversation": "2.52.8",
42
+ "@webex/internal-plugin-encryption": "2.52.8",
43
+ "@webex/internal-plugin-feature": "2.52.8",
44
+ "@webex/internal-plugin-mercury": "2.52.8",
45
+ "@webex/webex-core": "2.52.8",
40
46
  "ampersand-collection": "^2.0.2",
41
47
  "es6-promise-series": "^0.2.2",
42
48
  "lodash": "^4.17.21",
43
49
  "uuid": "^3.3.2"
50
+ },
51
+ "scripts": {
52
+ "build": "yarn build:src",
53
+ "build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
54
+ "test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
55
+ "test:browser:broken": "webex-legacy-tools test --integration --unit --runner karma",
56
+ "test:integration:broken": "webex-legacy-tools test --integration --runner mocha",
57
+ "test:style": "eslint ./src/**/*.*",
58
+ "test:unit": "webex-legacy-tools test --unit --runner jest"
44
59
  }
45
60
  }
package/process ADDED
@@ -0,0 +1 @@
1
+ module.exports = {browser: true};