From 904c81431fb3cebcbe68dc6ba77cfeed60843de3 Mon Sep 17 00:00:00 2001 From: EGAMAGZ <46827955+EGAMAGZ@users.noreply.github.com> Date: Wed, 12 Mar 2025 01:26:48 -0600 Subject: [PATCH 1/5] fix: corrected code block syntax in publishing-packages.md, therefore display color syntax --- frontend/docs/publishing-packages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/docs/publishing-packages.md b/frontend/docs/publishing-packages.md index 44851c854..13475fa23 100644 --- a/frontend/docs/publishing-packages.md +++ b/frontend/docs/publishing-packages.md @@ -433,7 +433,7 @@ because you have `"exports"` pointing to it (or a subdirectory of it). In this case, you can un-ignore the `dist/` directory by using a negation in the `exclude` field in your `jsr.json` / `deno.json` file. -```jsonc +```json // jsr.json { "name": "@luca/greet", From 5023f4ca786998597f3b693747830562b02a8ef2 Mon Sep 17 00:00:00 2001 From: EGAMAGZ <46827955+EGAMAGZ@users.noreply.github.com> Date: Wed, 12 Mar 2025 01:36:57 -0600 Subject: [PATCH 2/5] fix: removed #jsr-feedback channel because it is archived --- frontend/docs/why.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/docs/why.md b/frontend/docs/why.md index de38d27b3..c8fabcf82 100644 --- a/frontend/docs/why.md +++ b/frontend/docs/why.md @@ -112,7 +112,6 @@ resource-constrained environments. Your feedback will be critical to the success of JSR. If you have any ideas or feedback on how JSR could work better for your use case, please let us know on -[Discord](https://discord.gg/deno) in either the `#jsr` or `#jsr-feedback` -channels. +[Discord](https://discord.gg/deno) in the `#jsr` channel. Ready to try JSR yourself? [Get started now](/docs/introduction). From 3a4526f4afe7cbb8314ccb2d7a83f8fa213d84ab Mon Sep 17 00:00:00 2001 From: EGAMAGZ <46827955+EGAMAGZ@users.noreply.github.com> Date: Wed, 12 Mar 2025 01:42:58 -0600 Subject: [PATCH 3/5] fix: remove leading dollar signs from shell command examples in publishing-packages.md to unify how in other examples it isn't present --- frontend/docs/publishing-packages.md | 8 ++++---- frontend/docs/with/cloudflare-workers.md | 2 +- frontend/docs/with/deno.md | 2 +- frontend/docs/with/nextjs.md | 2 +- frontend/docs/with/node.md | 2 +- frontend/docs/with/vite.md | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/frontend/docs/publishing-packages.md b/frontend/docs/publishing-packages.md index 13475fa23..0b8078f52 100644 --- a/frontend/docs/publishing-packages.md +++ b/frontend/docs/publishing-packages.md @@ -260,9 +260,9 @@ registry. ```shell # deno -$ deno publish --dry-run +deno publish --dry-run # npm -$ npx jsr publish --dry-run +npx jsr publish --dry-run # yarn yarn dlx jsr publish --dry-run # pnpm @@ -282,9 +282,9 @@ Enter the root directory of your package (containing the `jsr.json` / ```shell # deno -$ deno publish +deno publish # npm -$ npx jsr publish +npx jsr publish # yarn yarn dlx jsr publish # pnpm diff --git a/frontend/docs/with/cloudflare-workers.md b/frontend/docs/with/cloudflare-workers.md index 6c015fd61..126a5764a 100644 --- a/frontend/docs/with/cloudflare-workers.md +++ b/frontend/docs/with/cloudflare-workers.md @@ -46,7 +46,7 @@ Running `wrangler dev` to start the local development server will run your Cloudflare Worker. You can then visit `http://localhost:8787` to see the result. ```shell -$ wrangler dev +wrangler dev ``` [Learn more about using packages.](/docs/using-packages) diff --git a/frontend/docs/with/deno.md b/frontend/docs/with/deno.md index afde54a24..e10d0ef5c 100644 --- a/frontend/docs/with/deno.md +++ b/frontend/docs/with/deno.md @@ -91,5 +91,5 @@ package. This command will display a list of all dependencies, including their version constraints. ```shell -$ deno info jsr:@std/fs +deno info jsr:@std/fs ``` diff --git a/frontend/docs/with/nextjs.md b/frontend/docs/with/nextjs.md index 26f71b86f..1ec83541b 100644 --- a/frontend/docs/with/nextjs.md +++ b/frontend/docs/with/nextjs.md @@ -44,7 +44,7 @@ application at `http://localhost:3000/`. You can then visit `http://localhost:3000/` to see it. ```shell -$ next dev +next dev ``` [Learn more about using packages.](/docs/using-packages) diff --git a/frontend/docs/with/node.md b/frontend/docs/with/node.md index 98705fba6..7f5baa9c6 100644 --- a/frontend/docs/with/node.md +++ b/frontend/docs/with/node.md @@ -34,7 +34,7 @@ console.log(red("Hello, world!")); Running this code will print a red "Hello, world!" text to your terminal. ```shell -$ node main.js +node main.js ``` [Learn more about using packages.](/docs/using-packages) diff --git a/frontend/docs/with/vite.md b/frontend/docs/with/vite.md index 257b1036c..b7d1b033d 100644 --- a/frontend/docs/with/vite.md +++ b/frontend/docs/with/vite.md @@ -44,7 +44,7 @@ at `http://localhost:5173`. You can then visit `http://localhost:5173` to see it. ```shell -$ vite +vite ``` [Learn more about using packages.](/docs/using-packages) From 411af6a5f53b72b606d7dd9e76b5bafca636b935 Mon Sep 17 00:00:00 2001 From: EGAMAGZ <46827955+EGAMAGZ@users.noreply.github.com> Date: Wed, 12 Mar 2025 02:05:29 -0600 Subject: [PATCH 4/5] fix: Replaced Deno Discord with JSR Discord --- frontend/docs/faq.md | 3 +-- frontend/docs/why.md | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/docs/faq.md b/frontend/docs/faq.md index a19138b58..a5bcd5866 100644 --- a/frontend/docs/faq.md +++ b/frontend/docs/faq.md @@ -100,8 +100,7 @@ us at security@jsr.io. ## How do I report a bug in JSR? -> During the open beta, please email us at help@jsr.io, or chat in the `#jsr` -> channel on the Deno Discord (https://discord.gg/deno). +> During the open beta, please email us at help@jsr.io, or chat in the [JSR Discord](https://discord.gg/hMqvhAn9xG). Please open an issue on the JSR GitHub repository at [jsr-io/jsr](https://github.com/jsr-io/jsr). diff --git a/frontend/docs/why.md b/frontend/docs/why.md index c8fabcf82..fef5b47d1 100644 --- a/frontend/docs/why.md +++ b/frontend/docs/why.md @@ -112,6 +112,6 @@ resource-constrained environments. Your feedback will be critical to the success of JSR. If you have any ideas or feedback on how JSR could work better for your use case, please let us know on -[Discord](https://discord.gg/deno) in the `#jsr` channel. +[Discord](https://discord.gg/hMqvhAn9xG). Ready to try JSR yourself? [Get started now](/docs/introduction). From dc95df4e864814c738593b4c4103428b6c1ee51f Mon Sep 17 00:00:00 2001 From: EGAMAGZ <46827955+EGAMAGZ@users.noreply.github.com> Date: Wed, 12 Mar 2025 02:06:23 -0600 Subject: [PATCH 5/5] style: Formatted code --- frontend/docs/faq.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/docs/faq.md b/frontend/docs/faq.md index a5bcd5866..d3447a492 100644 --- a/frontend/docs/faq.md +++ b/frontend/docs/faq.md @@ -100,7 +100,8 @@ us at security@jsr.io. ## How do I report a bug in JSR? -> During the open beta, please email us at help@jsr.io, or chat in the [JSR Discord](https://discord.gg/hMqvhAn9xG). +> During the open beta, please email us at help@jsr.io, or chat in the +> [JSR Discord](https://discord.gg/hMqvhAn9xG). Please open an issue on the JSR GitHub repository at [jsr-io/jsr](https://github.com/jsr-io/jsr).