@webex/plugin-logger 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;
package/dist/logger.js CHANGED
@@ -288,7 +288,7 @@ var Logger = _webexCore.WebexPlugin.extend({
288
288
  }
289
289
  return buffer.join('\n');
290
290
  },
291
- version: "2.52.6"
291
+ version: "2.52.7"
292
292
  });
293
293
 
294
294
  /**
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-logger",
3
- "version": "2.52.6",
3
+ "version": "2.52.7",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -20,15 +20,34 @@
20
20
  ]
21
21
  },
22
22
  "devDependencies": {
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",
23
34
  "sinon": "^9.2.4"
24
35
  },
25
36
  "dependencies": {
26
- "@webex/common": "2.52.6",
27
- "@webex/plugin-logger": "2.52.6",
28
- "@webex/test-helper-chai": "2.52.6",
29
- "@webex/test-helper-mocha": "2.52.6",
30
- "@webex/test-helper-mock-webex": "2.52.6",
31
- "@webex/webex-core": "2.52.6",
37
+ "@webex/common": "2.52.7",
38
+ "@webex/test-helper-chai": "2.52.7",
39
+ "@webex/test-helper-mocha": "2.52.7",
40
+ "@webex/test-helper-mock-webex": "2.52.7",
41
+ "@webex/webex-core": "2.52.7",
32
42
  "lodash": "^4.17.21"
43
+ },
44
+ "scripts": {
45
+ "build": "yarn build:src",
46
+ "build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
47
+ "test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
48
+ "test:browser": "webex-legacy-tools test --integration --unit --runner karma",
49
+ "test:integration": "webex-legacy-tools test --integration --runner mocha",
50
+ "test:style": "eslint ./src/**/*.*",
51
+ "test:unit": "webex-legacy-tools test --unit --runner jest"
33
52
  }
34
53
  }
package/process ADDED
@@ -0,0 +1 @@
1
+ module.exports = {browser: true};