pm-slack 2026.6.8 → 2026.6.9
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/dist/index.js +1 -1
- package/manifest.json +1 -1
- package/package.json +8 -4
package/dist/index.js
CHANGED
|
@@ -1119,7 +1119,7 @@ function extractItem(ctx) {
|
|
|
1119
1119
|
// ---------------------------------------------------------------------------
|
|
1120
1120
|
export default defineExtension({
|
|
1121
1121
|
name: "pm-slack",
|
|
1122
|
-
version: "2026.6.
|
|
1122
|
+
version: "2026.6.9",
|
|
1123
1123
|
activate(api) {
|
|
1124
1124
|
// -----------------------------------------------------------------------
|
|
1125
1125
|
// afterCommand hook — fires after every pm-cli command completes.
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pm-slack",
|
|
3
|
-
"version": "2026.6.
|
|
3
|
+
"version": "2026.6.9",
|
|
4
4
|
"description": "Slack notifications for pm item lifecycle events",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,15 +32,16 @@
|
|
|
32
32
|
"changelog": "pm-changelog --pm-root .agents/pm --mode prepend --output CHANGELOG.md --release-version-from-package --since-previous-tag --until-release-tag --item-url-base https://github.com/unbraind/pm-slack/blob/main/.agents/pm",
|
|
33
33
|
"changelog:full": "pm-changelog --pm-root .agents/pm --mode replace --output CHANGELOG.md --all-release-tags --release-version-from-package --item-url-base https://github.com/unbraind/pm-slack/blob/main/.agents/pm",
|
|
34
34
|
"changelog:check": "pm-changelog --pm-root .agents/pm --mode replace --output CHANGELOG.md --all-release-tags --release-version-from-package --item-url-base https://github.com/unbraind/pm-slack/blob/main/.agents/pm --check",
|
|
35
|
-
"release:check": "npm run typecheck && npm run build && npm test && npm run audit:prod && npm run pack:dry-run && npm run changelog:check"
|
|
35
|
+
"release:check": "npm run typecheck && npm run build && npm test && npm run audit:prod && npm run pack:dry-run && npm run changelog:check",
|
|
36
|
+
"prepublishOnly": "npm run release:check"
|
|
36
37
|
},
|
|
37
38
|
"peerDependencies": {
|
|
38
39
|
"@unbrained/pm-cli": ">=2026.6.7"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
42
|
"@types/node": "^25.9.2",
|
|
42
|
-
"@unbrained/pm-cli": "^2026.6.
|
|
43
|
-
"pm-changelog": "^2026.6.
|
|
43
|
+
"@unbrained/pm-cli": "^2026.6.9",
|
|
44
|
+
"pm-changelog": "^2026.6.8",
|
|
44
45
|
"typescript": "^6.0.3"
|
|
45
46
|
},
|
|
46
47
|
"engines": {
|
|
@@ -86,5 +87,8 @@
|
|
|
86
87
|
"examples": [
|
|
87
88
|
"README.md"
|
|
88
89
|
]
|
|
90
|
+
},
|
|
91
|
+
"publishConfig": {
|
|
92
|
+
"access": "public"
|
|
89
93
|
}
|
|
90
94
|
}
|