Skip to content

Commit 4b8bfec

Browse files
authored
docs: update package homepage to docs.slack.dev tools reference (#2369)
1 parent 765423c commit 4b8bfec

File tree

17 files changed

+30
-30
lines changed

17 files changed

+30
-30
lines changed

packages/cli-hooks/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@ assistance working through your issue:
114114

115115
<!-- a collection of links -->
116116
[bolt]: https://github.com/slackapi/bolt-js
117-
[cli]: https://tools.slack.dev/slack-cli/
117+
[cli]: https://docs.slack.dev/tools/slack-cli/
118118
[community]: https://community.slack.com/
119119
[config]: https://api.slack.com/apps
120120
[email]: mailto:[email protected]
121-
[install]: https://tools.slack.dev/slack-cli/guides/installing-the-slack-cli-for-mac-and-linux
121+
[install]: https://docs.slack.dev/tools/slack-cli/guides/installing-the-slack-cli-for-mac-and-linux
122122
[issues]: http://github.com/slackapi/node-slack-sdk/issues
123123
[manifest]: https://docs.slack.dev/reference/app-manifest
124124
[node]: https://github.com/nodejs/Release#release-schedule

packages/cli-hooks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"type": "git",
2828
"url": "git+https://github.com/slackapi/node-slack-sdk.git"
2929
},
30-
"homepage": "https://tools.slack.dev/node-slack-sdk",
30+
"homepage": "https://docs.slack.dev/tools/node-slack-sdk/",
3131
"publishConfig": {
3232
"access": "public"
3333
},

packages/cli-test/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,5 @@ describe('Login with the CLI', () => {
7070
| `SLACK_CLI_PATH` | yes | path to Slack CLI binary |
7171
| `SLACK_CLI_LOG_LEVEL` | no | default: `info`. [Logger levels](https://github.com/winstonjs/winston#logging) |
7272

73-
[cli]: https://tools.slack.dev/deno-slack-sdk/guides/getting-started
74-
[commands]: https://tools.slack.dev/slack-cli/reference/commands/slack
73+
[cli]: https://docs.slack.dev/tools/slack-cli/
74+
[commands]: https://docs.slack.dev/tools/slack-cli/reference/commands/slack/

packages/logger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"npm": ">= 8.6.0"
1919
},
2020
"repository": "slackapi/node-slack-sdk",
21-
"homepage": "https://tools.slack.dev/node-slack-sdk",
21+
"homepage": "https://docs.slack.dev/tools/node-slack-sdk/",
2222
"publishConfig": {
2323
"access": "public"
2424
},

packages/oauth/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ $ npm install @slack/oauth
1616

1717
## Usage
1818

19-
These examples show how to get started using the most common features. You'll find more extensive [documentation on the package's website](https://tools.slack.dev/node-slack-sdk/oauth).
19+
These examples show how to get started using the most common features. You'll find more extensive [documentation on the package's website](https://docs.slack.dev/tools/node-slack-sdk/oauth/).
2020

2121
<!-- END: Remove before copying into the docs directory -->
2222

2323
Before building an app, you'll need to [create a Slack app](https://api.slack.com/apps/new) and install it to your development workspace. You'll also need to copy the **Client ID** and **Client Secret** given to you by Slack under the **Basic Information** of your app configuration.
2424

25-
It may be helpful to read the tutorials on [getting started](https://tools.slack.dev/node-slack-sdk/getting-started) and [getting a public URL that can be used for development](https://tools.slack.dev/node-slack-sdk/tutorials/local-development).
25+
It may be helpful to read the tutorials on [getting started](https://docs.slack.dev/tools/node-slack-sdk/getting-started/) and [getting a public URL that can be used for development](https://docs.slack.dev/tools/node-slack-sdk/tutorials/local-development/).
2626

2727
---
2828

packages/oauth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"npm": ">=8.6.0"
2121
},
2222
"repository": "slackapi/node-slack-sdk",
23-
"homepage": "https://tools.slack.dev/node-slack-sdk/oauth",
23+
"homepage": "https://docs.slack.dev/tools/node-slack-sdk/oauth/",
2424
"publishConfig": {
2525
"access": "public"
2626
},

packages/rtm-api/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The `@slack/rtm-api` package contains a simple, convenient, and configurable client for receiving events and sending simple messages to Slack's [Real Time Messaging API](https://docs.slack.dev/legacy/legacy-rtm-api). Use it in your
44
app to stay connected to the Slack platform over a persistent Websocket connection.
55

6-
**Note**: The RTM API isn't available for modern granular-permissions apps, and you can no longer create new legacy apps. We recommend using [Bolt for JavaScript](https://tools.slack.dev/bolt-js). If you have an existing RTM app, do not update its scopes as it will be updated to a granular-permissions app and stop working with the RTM API.
6+
**Note**: The RTM API isn't available for modern granular-permissions apps, and you can no longer create new legacy apps. We recommend using [Bolt for JavaScript](https://docs.slack.dev/tools/bolt-js/). If you have an existing RTM app, do not update its scopes as it will be updated to a granular-permissions app and stop working with the RTM API.
77

88
## Installation
99

@@ -16,7 +16,7 @@ $ npm install @slack/rtm-api
1616
## Usage
1717

1818
These examples show the most common features of the `RTMClient`. You'll find even more extensive [documentation on the
19-
package's website](https://tools.slack.dev/node-slack-sdk/rtm-api).
19+
package's website](https://docs.slack.dev/tools/node-slack-sdk/rtm-api/).
2020

2121
<!-- END: Remove before copying into the docs directory -->
2222

@@ -72,7 +72,7 @@ user ID and team ID, you can look those up any time the client is connected as t
7272

7373
Options passed to the `.start()` method are passed through as arguments to the [`rtm.connect` Web API
7474
method](https://docs.slack.dev/reference/methods/rtm.connect). These arguments deal with presence, which is discussed in more
75-
detail [on the documentation website](https://tools.slack.dev/node-slack-sdk/rtm-api/#presence).
75+
detail [on the documentation website](https://docs.slack.dev/tools/node-slack-sdk/rtm-api/#presence).
7676

7777
</details>
7878

packages/rtm-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"npm": ">=8.6.0"
2727
},
2828
"repository": "slackapi/node-slack-sdk",
29-
"homepage": "https://tools.slack.dev/node-slack-sdk/rtm-api",
29+
"homepage": "https://docs.slack.dev/tools/node-slack-sdk/rtm-api/",
3030
"publishConfig": {
3131
"access": "public"
3232
},

packages/socket-mode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"npm": ">= 8.6.0"
2929
},
3030
"repository": "slackapi/node-slack-sdk",
31-
"homepage": "https://tools.slack.dev/node-slack-sdk/socket-mode",
31+
"homepage": "https://docs.slack.dev/tools/node-slack-sdk/socket-mode/",
3232
"publishConfig": {
3333
"access": "public"
3434
},

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"npm": ">= 6.12.0"
2121
},
2222
"repository": "slackapi/node-slack-sdk",
23-
"homepage": "https://tools.slack.dev/node-slack-sdk",
23+
"homepage": "https://docs.slack.dev/tools/node-slack-sdk/reference/types/",
2424
"publishConfig": {
2525
"access": "public"
2626
},

0 commit comments

Comments
 (0)