@webex/internal-plugin-flag 2.50.0 → 2.52.0

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.
@@ -0,0 +1,3 @@
1
+ const babelConfigLegacy = require('@webex/babel-config-legacy');
2
+
3
+ module.exports = babelConfigLegacy;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/internal-plugin-flag",
3
- "version": "2.50.0",
3
+ "version": "2.52.0",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "author": "Saurabh Jain <saurjai3@cisco.com>",
@@ -18,9 +18,10 @@
18
18
  "build": "yarn build:src",
19
19
  "build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
20
20
  "test": "yarn test:style && yarn test:unit && yarn test:integration",
21
- "test:integration": "webex-legacy-tools test --integration",
21
+ "test:browser": "webex-legacy-tools test --integration --unit --runner karma",
22
+ "test:integration": "webex-legacy-tools test --integration --runner mocha",
22
23
  "test:style": "eslint ./src/**/*.*",
23
- "test:unit": "webex-legacy-tools test --unit"
24
+ "test:unit": "webex-legacy-tools test --unit --runner jest"
24
25
  },
25
26
  "browserify": {
26
27
  "transform": [
@@ -29,22 +30,22 @@
29
30
  ]
30
31
  },
31
32
  "dependencies": {
32
- "@webex/internal-plugin-conversation": "2.50.0",
33
- "@webex/internal-plugin-device": "2.50.0",
34
- "@webex/internal-plugin-flag": "2.50.0",
35
- "@webex/test-helper-chai": "2.50.0",
36
- "@webex/test-helper-mock-webex": "2.50.0",
37
- "@webex/test-helper-test-users": "2.50.0",
38
- "@webex/webex-core": "2.50.0",
33
+ "@webex/internal-plugin-conversation": "2.52.0",
34
+ "@webex/internal-plugin-device": "2.52.0",
35
+ "@webex/internal-plugin-flag": "2.52.0",
36
+ "@webex/test-helper-chai": "2.52.0",
37
+ "@webex/test-helper-mock-webex": "2.52.0",
38
+ "@webex/test-helper-test-users": "2.52.0",
39
+ "@webex/webex-core": "2.52.0",
39
40
  "lodash": "^4.17.21"
40
41
  },
41
42
  "devDependencies": {
42
43
  "@babel/core": "^7.17.10",
43
44
  "@types/mocha": "^10",
44
- "@webex/babel-config-legacy": "2.50.0",
45
- "@webex/eslint-config-legacy": "2.50.0",
46
- "@webex/jest-config-legacy": "2.50.0",
47
- "@webex/legacy-tools": "2.50.0",
45
+ "@webex/babel-config-legacy": "2.52.0",
46
+ "@webex/eslint-config-legacy": "2.52.0",
47
+ "@webex/jest-config-legacy": "2.52.0",
48
+ "@webex/legacy-tools": "2.52.0",
48
49
  "eslint": "^8.24.0",
49
50
  "mocha": "^10.2.0",
50
51
  "prettier": "^2.7.1"
package/process ADDED
@@ -0,0 +1 @@
1
+ module.exports = {browser: true};
package/babel.config.json DELETED
@@ -1 +0,0 @@
1
- {"extends": "@webex/babel-config-legacy" }