nightingale-slack 12.0.1 → 12.1.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.
package/.eslintrc.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "root": true,
3
- "extends": ["@pob/eslint-config/root-commonjs"],
3
+ "extends": ["@pob/eslint-config/root-module"],
4
4
  "ignorePatterns": ["*.d.ts", "/dist"]
5
5
  }
package/CHANGELOG.md CHANGED
@@ -3,6 +3,44 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [12.1.3](https://github.com/christophehurpeau/nightingale/compare/v12.1.2...v12.1.3) (2022-01-15)
7
+
8
+ **Note:** Version bump only for package nightingale-slack
9
+
10
+
11
+
12
+
13
+
14
+ ## [12.1.2](https://github.com/christophehurpeau/nightingale/compare/v12.1.1...v12.1.2) (2022-01-02)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * main esm for jest which supports esm but not exports ([98789fa](https://github.com/christophehurpeau/nightingale/commit/98789fa490e723840fccc443584189b6905d871b))
20
+
21
+
22
+
23
+
24
+
25
+ ## [12.1.1](https://github.com/christophehurpeau/nightingale/compare/v12.1.0...v12.1.1) (2022-01-01)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * properly configure package type ([2e0cbf5](https://github.com/christophehurpeau/nightingale/commit/2e0cbf555bd3b9fa3c3851025452937f64408aa8))
31
+
32
+
33
+
34
+
35
+
36
+ # [12.1.0](https://github.com/christophehurpeau/nightingale/compare/v12.0.1...v12.1.0) (2021-12-15)
37
+
38
+ **Note:** Version bump only for package nightingale-slack
39
+
40
+
41
+
42
+
43
+
6
44
  ## [12.0.1](https://github.com/christophehurpeau/nightingale/compare/v12.0.0...v12.0.1) (2021-12-12)
7
45
 
8
46
  **Note:** Version bump only for package nightingale-slack
package/createBody.js CHANGED
@@ -1,3 +1 @@
1
- 'use strict';
2
-
3
- module.exports = require('.').createBody;
1
+ export { createBody } from '.';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightingale-slack",
3
- "version": "12.0.1",
3
+ "version": "12.1.3",
4
4
  "description": "Slack handler for nightingale",
5
5
  "keywords": [
6
6
  "nightingale",
@@ -14,11 +14,11 @@
14
14
  "directory": "packages/nightingale-slack"
15
15
  },
16
16
  "homepage": "https://github.com/christophehurpeau/nightingale",
17
- "type": "commonjs",
17
+ "type": "module",
18
18
  "engines": {
19
19
  "node": "^14.13.1 || >=16.0.0"
20
20
  },
21
- "main": "./dist/index-node14.cjs.js",
21
+ "main": "./dist/index-node14.mjs",
22
22
  "types": "./dist/index.d.ts",
23
23
  "exports": {
24
24
  "./package.json": "./package.json",
@@ -60,17 +60,17 @@
60
60
  ]
61
61
  },
62
62
  "dependencies": {
63
- "nightingale-levels": "12.0.1",
64
- "nightingale-markdown-formatter": "12.0.1",
65
- "nightingale-raw-formatter": "12.0.1",
66
- "nightingale-types": "12.0.1",
63
+ "nightingale-levels": "12.1.3",
64
+ "nightingale-markdown-formatter": "12.1.3",
65
+ "nightingale-raw-formatter": "12.1.3",
66
+ "nightingale-types": "12.1.3",
67
67
  "request": "^2.88.0"
68
68
  },
69
69
  "devDependencies": {
70
- "@babel/core": "7.16.0",
71
- "@types/request": "2.48.7",
72
- "pob-babel": "29.4.2",
73
- "typescript": "4.5.3"
70
+ "@babel/core": "7.16.7",
71
+ "@types/request": "2.48.8",
72
+ "pob-babel": "29.6.1",
73
+ "typescript": "4.5.4"
74
74
  },
75
- "gitHead": "bb3da283ed9e19d2c1dcdb5e130c86b4835d8500"
75
+ "gitHead": "67fdeb8e3c6660b8bfa4eed4b66b2c05876ed9cc"
76
76
  }