@webex/plugin-attachment-actions 2.52.6 → 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;
@@ -302,7 +302,7 @@ var AttachmentActions = _webexCore.WebexPlugin.extend({
302
302
  return null;
303
303
  }
304
304
  },
305
- version: "2.52.6"
305
+ version: "2.52.7"
306
306
  });
307
307
  var _default = AttachmentActions;
308
308
  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/plugin-attachment-actions",
3
- "version": "2.52.6",
3
+ "version": "2.52.7",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -23,17 +23,38 @@
23
23
  ]
24
24
  },
25
25
  "dependencies": {
26
- "@webex/common": "2.52.6",
27
- "@webex/internal-plugin-conversation": "2.52.6",
28
- "@webex/internal-plugin-mercury": "2.52.6",
29
- "@webex/plugin-attachment-actions": "2.52.6",
30
- "@webex/plugin-logger": "2.52.6",
31
- "@webex/plugin-messages": "2.52.6",
32
- "@webex/plugin-people": "2.52.6",
33
- "@webex/test-helper-chai": "2.52.6",
34
- "@webex/test-helper-test-users": "2.52.6",
35
- "@webex/webex-core": "2.52.6",
26
+ "@webex/common": "2.52.7",
27
+ "@webex/internal-plugin-conversation": "2.52.7",
28
+ "@webex/internal-plugin-mercury": "2.52.7",
29
+ "@webex/plugin-logger": "2.52.7",
30
+ "@webex/plugin-messages": "2.52.7",
31
+ "@webex/plugin-people": "2.52.7",
32
+ "@webex/test-helper-chai": "2.52.7",
33
+ "@webex/test-helper-test-users": "2.52.7",
34
+ "@webex/webex-core": "2.52.7",
36
35
  "debug": "^4.3.4",
37
36
  "lodash": "^4.17.21"
37
+ },
38
+ "scripts": {
39
+ "build": "yarn build:src",
40
+ "build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
41
+ "test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
42
+ "test:browser": "webex-legacy-tools test --integration --unit --runner karma",
43
+ "test:integration": "webex-legacy-tools test --integration --runner mocha",
44
+ "test:style": "eslint ./src/**/*.*",
45
+ "test:unit": "webex-legacy-tools test --unit --runner jest"
46
+ },
47
+ "devDependencies": {
48
+ "@babel/core": "^7.17.10",
49
+ "@webex/babel-config-legacy": "2.52.7",
50
+ "@webex/eslint-config-legacy": "2.52.7",
51
+ "@webex/jest-config-legacy": "2.52.7",
52
+ "@webex/legacy-tools": "2.52.7",
53
+ "@webex/test-helper-chai": "2.52.7",
54
+ "@webex/test-helper-mocha": "2.52.7",
55
+ "@webex/test-helper-mock-webex": "2.52.7",
56
+ "@webex/test-helper-test-users": "2.52.7",
57
+ "eslint": "^8.24.0",
58
+ "prettier": "^2.7.1"
38
59
  }
39
60
  }
package/process ADDED
@@ -0,0 +1 @@
1
+ module.exports = {browser: true};