@theholocron/holocron-plugin-slack 3.28.0 → 3.29.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/README.md +2 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -20,6 +20,8 @@ Token resolution order:
|
|
|
20
20
|
1. `--token <TOKEN>` flag on the holocron invocation
|
|
21
21
|
2. `HOLOCRON_SLACK_TOKEN` env var
|
|
22
22
|
3. `SLACK_BOT_TOKEN` env var (the standard Slack variable name)
|
|
23
|
+
4. Keyring `slack.<org>` — tried first when an org is active via `--org`, `HOLOCRON_ORG`, or `org` in `holocron.config.ts`
|
|
24
|
+
5. Keyring `slack` — unnamespaced fallback; set via `holocron auth set slack <xoxb-token>`
|
|
23
25
|
|
|
24
26
|
Create a Slack app at **api.slack.com/apps**, add the `chat:write` bot
|
|
25
27
|
scope, install it to your workspace, and copy the **Bot User OAuth Token**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/holocron-plugin-slack",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.29.0",
|
|
4
4
|
"description": "Holocron plugin for Slack. Implements the notifications capability via Slack's bot API.",
|
|
5
5
|
"homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-slack#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/holocron/issues",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@theholocron/cli": "3.
|
|
24
|
+
"@theholocron/cli": "3.29.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@theholocron/eslint-config": "^7.
|
|
27
|
+
"@theholocron/eslint-config": "^7.20.0",
|
|
28
28
|
"chalk": "^6.0.0",
|
|
29
|
-
"@theholocron/tsconfig": "^7.
|
|
30
|
-
"@theholocron/tsdown-config": "^7.
|
|
31
|
-
"@theholocron/vitest-config": "^7.
|
|
29
|
+
"@theholocron/tsconfig": "^7.20.0",
|
|
30
|
+
"@theholocron/tsdown-config": "^7.20.0",
|
|
31
|
+
"@theholocron/vitest-config": "^7.20.0",
|
|
32
32
|
"@types/node": "^26",
|
|
33
33
|
"@vitest/coverage-v8": "^4.1.10",
|
|
34
34
|
"@vitest/eslint-plugin": "^1.6.27",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"tsx": "4.22.4",
|
|
40
40
|
"typescript": "^5.9.3",
|
|
41
41
|
"vitest": "^4.1.10",
|
|
42
|
-
"@theholocron/cli": "3.
|
|
42
|
+
"@theholocron/cli": "3.29.0"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|