@driveflux/reporter 5.2.0 → 5.2.3

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +17 -17
package/dist/index.js CHANGED
@@ -200,7 +200,7 @@ export var getDriver = function(driver) {
200
200
  case 'slack':
201
201
  {
202
202
  if (!config.slack) {
203
- throw new Error("Slack config missing");
203
+ throw new Error('Slack config missing');
204
204
  }
205
205
  return new SlackDriver(config.slack);
206
206
  }
package/package.json CHANGED
@@ -1,39 +1,39 @@
1
1
  {
2
2
  "name": "@driveflux/reporter",
3
- "version": "5.2.0",
3
+ "version": "5.2.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./package.json": "./package.json",
7
7
  ".": {
8
- "import": "./dist/index.js",
9
- "types": "./dist/index.d.ts"
8
+ "types": "./dist/index.d.ts",
9
+ "import": "./dist/index.js"
10
10
  },
11
11
  "./config": {
12
- "import": "./dist/config.js",
13
- "types": "./dist/config.d.ts"
12
+ "types": "./dist/config.d.ts",
13
+ "import": "./dist/config.js"
14
14
  }
15
15
  },
16
+ "files": [
17
+ "dist"
18
+ ],
16
19
  "dependencies": {
17
- "@driveflux/fetch": "6.1.0",
18
- "@driveflux/problem": "4.1.0",
19
- "@driveflux/redact": "4.1.0",
20
- "@driveflux/singleton": "1.1.0",
21
- "@driveflux/utils": "3.1.0",
22
- "@sentry/node": "^8.17.0",
20
+ "@driveflux/fetch": "6.1.1",
21
+ "@driveflux/problem": "4.1.2",
22
+ "@driveflux/redact": "4.1.1",
23
+ "@driveflux/singleton": "1.1.2",
24
+ "@driveflux/utils": "3.1.2",
25
+ "@sentry/node": "^8.19.0",
23
26
  "flat": "6.0.1",
24
27
  "rollbar": "^2.26.4"
25
28
  },
26
29
  "devDependencies": {
27
- "@driveflux/fab": "2.1.0",
28
- "@driveflux/tsconfig": "1.1.0",
30
+ "@driveflux/fab": "2.1.1",
31
+ "@driveflux/tsconfig": "1.1.2",
29
32
  "@types/flat": "^5.0.5",
30
- "@types/node": "^20.14.10",
33
+ "@types/node": "^20.14.11",
31
34
  "del-cli": "^5.1.0",
32
35
  "typescript": "^5.5.3"
33
36
  },
34
- "files": [
35
- "dist"
36
- ],
37
37
  "scripts": {
38
38
  "build": "fab",
39
39
  "build:js": "fab -t esm",