nightingale-slack 18.0.0 → 18.2.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.
- package/CHANGELOG.md +19 -0
- package/package.json +26 -23
- package/src/createBody.test.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
## [18.2.0](https://github.com/christophehurpeau/nightingale/compare/v18.1.0...v18.2.0) (2026-06-12)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** update dependency @types/node to v24.10.4 ([#1269](https://github.com/christophehurpeau/nightingale/issues/1269))
|
|
11
|
+
|
|
12
|
+
Version bump for dependency: nightingale
|
|
13
|
+
Version bump for dependency: nightingale-types
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [18.1.0](https://github.com/christophehurpeau/nightingale/compare/v18.0.0...v18.1.0) (2025-11-18)
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* **deps:** update dependency @types/node to v22.19.1 ([#1277](https://github.com/christophehurpeau/nightingale/issues/1277))
|
|
21
|
+
|
|
22
|
+
Version bump for dependency: nightingale
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [18.0.0](https://github.com/christophehurpeau/nightingale/compare/v17.0.1...v18.0.0) (2025-11-15)
|
|
7
26
|
|
|
8
27
|
### ⚠ BREAKING CHANGES
|
package/package.json
CHANGED
|
@@ -1,23 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nightingale-slack",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.2.0",
|
|
4
4
|
"description": "Slack handler for nightingale",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nightingale",
|
|
7
7
|
"nightingale-handler"
|
|
8
8
|
],
|
|
9
|
-
"
|
|
9
|
+
"homepage": "https://github.com/christophehurpeau/nightingale",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/christophehurpeau/nightingale/issues"
|
|
12
|
+
},
|
|
10
13
|
"license": "ISC",
|
|
14
|
+
"author": "Christophe Hurpeau <christophe@hurpeau.com> (http://christophe.hurpeau.com/)",
|
|
11
15
|
"repository": {
|
|
12
16
|
"type": "git",
|
|
13
17
|
"url": "https://github.com/christophehurpeau/nightingale.git",
|
|
14
18
|
"directory": "packages/nightingale-slack"
|
|
15
19
|
},
|
|
16
|
-
"
|
|
20
|
+
"files": [
|
|
21
|
+
"src",
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
17
24
|
"type": "module",
|
|
18
|
-
"engines": {
|
|
19
|
-
"node": ">=22.18.0"
|
|
20
|
-
},
|
|
21
25
|
"sideEffects": false,
|
|
22
26
|
"main": "./dist/index-node.mjs",
|
|
23
27
|
"types": "./dist/definitions/index.d.ts",
|
|
@@ -30,20 +34,29 @@
|
|
|
30
34
|
}
|
|
31
35
|
}
|
|
32
36
|
},
|
|
33
|
-
"files": [
|
|
34
|
-
"src",
|
|
35
|
-
"dist"
|
|
36
|
-
],
|
|
37
37
|
"scripts": {
|
|
38
|
-
"build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
|
|
38
|
+
"build": "yarn run clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
|
|
39
39
|
"build:definitions": "tsc -p tsconfig.json",
|
|
40
40
|
"clean": "yarn clean:build",
|
|
41
41
|
"clean:build": "pob-esbuild-clean-out dist",
|
|
42
42
|
"lint": "yarn run lint:eslint",
|
|
43
|
-
"lint:eslint": "yarn ../.. run eslint --quiet packages/nightingale-slack",
|
|
44
|
-
"test": "yarn
|
|
43
|
+
"lint:eslint": "yarn '../..' run eslint --quiet 'packages/nightingale-slack'",
|
|
44
|
+
"test": "yarn '../..' run test -- 'packages/nightingale-slack'",
|
|
45
|
+
"tsc": "tsc",
|
|
45
46
|
"watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
|
|
46
47
|
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"nightingale": "18.2.0",
|
|
50
|
+
"nightingale-types": "18.2.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@pob/rollup-esbuild": "9.1.1",
|
|
54
|
+
"@types/node": "24.10.4",
|
|
55
|
+
"typescript": "6.0.3"
|
|
56
|
+
},
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=22.18.0"
|
|
59
|
+
},
|
|
47
60
|
"pob": {
|
|
48
61
|
"bundler": "rollup-esbuild",
|
|
49
62
|
"entries": [
|
|
@@ -57,15 +70,5 @@
|
|
|
57
70
|
}
|
|
58
71
|
],
|
|
59
72
|
"typescript": true
|
|
60
|
-
},
|
|
61
|
-
"prettier": "@pob/root/prettier-config",
|
|
62
|
-
"dependencies": {
|
|
63
|
-
"nightingale": "18.0.0",
|
|
64
|
-
"nightingale-types": "18.0.0"
|
|
65
|
-
},
|
|
66
|
-
"devDependencies": {
|
|
67
|
-
"@pob/rollup-esbuild": "7.3.2",
|
|
68
|
-
"@types/node": "22.18.13",
|
|
69
|
-
"typescript": "5.9.3"
|
|
70
73
|
}
|
|
71
74
|
}
|