From 5833cf2117f85ea4e480c62885fe4f3ba044d179 Mon Sep 17 00:00:00 2001 From: Wolvinny Date: Thu, 1 Aug 2024 23:05:31 +0200 Subject: [PATCH 1/4] Edit embed-limits link Message got moved into its own class, thus the url changed --- tags/tags.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/tags.toml b/tags/tags.toml index 48f1145..b5ec1b3 100644 --- a/tags/tags.toml +++ b/tags/tags.toml @@ -58,7 +58,7 @@ Learn more about slash command limits at the [Discord Developer Documentation](h [embed-limits] keywords = ["embedlimits"] content = """ -Learn more about embed limits at the [Discord Developer Documentation](https://discord.com/developers/docs/resources/channel#embed-object-embed-limits) +Learn more about embed limits at the [Discord Developer Documentation](https://discord.com/developers/docs/resources/message#embed-object-embed-limits) """ [button-limits] From 018f024a98189bb1655c4c633a5e86d8b4f7ea9a Mon Sep 17 00:00:00 2001 From: Wolvinny Date: Thu, 1 Aug 2024 23:45:57 +0200 Subject: [PATCH 2/4] fix typo --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4f5da82..ebdcd86 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "cmd:glob": "env-cmd node dist/deployFunctions/deployGlobal.js", "cmd:dev": "env-cmd node dist/deployFunctions/deployDev.js", "validate-tags": "node dist/workflowFunctions/validateTagsWithoutLinks.js", - "validate-tags:withlinks": "snode dist/workflowFunctions/validateTagsWithLinks.js", + "validate-tags:withlinks": "node dist/workflowFunctions/validateTagsWithLinks.js", "prepare": "is-ci || husky install" }, "type": "module", From 7bc77e364ca90de041f9415f0653672c747ea2e5 Mon Sep 17 00:00:00 2001 From: Wolvinny Date: Fri, 2 Aug 2024 23:16:02 +0200 Subject: [PATCH 3/4] Fix wording --- tags/tags.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/tags.toml b/tags/tags.toml index b5ec1b3..e51d064 100644 --- a/tags/tags.toml +++ b/tags/tags.toml @@ -624,7 +624,7 @@ keywords = ["=", "==", "===", "equaltypes", "equal-types"] content = """ In JavaScript, = is used for assignment, == for loose equality, and === for strict equality checks. ```js -x = 1; // assigning x to a value +x = 1; // assigning a value to x '1' == 1 // true '1' === 1 // false ``` From 70f331d673f40a5873b6cd853a57840eeb235342 Mon Sep 17 00:00:00 2001 From: Wolvinny Date: Sat, 3 Aug 2024 12:07:14 +0200 Subject: [PATCH 4/4] Update tags added new node-version keywords added an s to limitations --- tags/tags.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tags/tags.toml b/tags/tags.toml index e51d064..c62dcf1 100644 --- a/tags/tags.toml +++ b/tags/tags.toml @@ -210,6 +210,8 @@ keywords = [ "catch-{", "update-node", "abortcontroller", + "readablestream", + "??=" ] content = """ Please update Node.js to the [current LTS](https://nodejs.org/) (long-term support) version! @@ -1200,6 +1202,6 @@ Relative paths base: keywords = ["network-issues", "connection-reset", "socket-error"] content = """ Errors such as `ECONNRESET`, `ConnectTimeoutError`, `SocketError: other side closed` indicate a network issue -* Free or shared hosting providers often come with significant limitation +* Free or shared hosting providers often come with significant limitations * Another indication of these issues are 'Unknown Interaction' errors. """