Skip to content

Commit

Permalink
move private repos docs to advanced and further down the menu and add… (
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisjofrank authored Jul 5, 2024
1 parent f7a360d commit 1855a05
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runtime/_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ export const sidebar = [
items: [
"/runtime/manual/basics/modules/",
"/runtime/manual/basics/modules/reloading_modules/",
"/runtime/manual/basics/modules/private_repositories/",
"/runtime/manual/basics/modules/proxies/",
"/runtime/manual/basics/modules/integrity_checking/",
"/runtime/manual/advanced/publishing/",
"/runtime/manual/advanced/publishing/dnt/",
"/runtime/manual/advanced/private_repositories/",
],
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
title: "Private Modules and Repositories"
---

> [!NOTE] Not to be confused with
> [private npm registries](/runtime/manual/node/private_registries/).
There may be instances where you want to load a remote module that is located in
a _private_ repository, like a private repository on GitHub.

Expand Down
3 changes: 3 additions & 0 deletions runtime/manual/node/private_registries.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
title: "Private NPM Registries"
---

> [!NOTE] Not to be confused with
> [private repositories and modules](/runtime/manual/advanced/private_repositories/).
Deno supports private registries, which allow you to host and share your own
modules. This is useful for organizations that want to keep their code private
or for individuals who want to share their code with a select group of people.
Expand Down
2 changes: 1 addition & 1 deletion runtime/tutorials/file_server.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ file_server --help

Example output:

```console
```shell
Deno File Server
Serves a local directory in HTTP.
INSTALL:
Expand Down

0 comments on commit 1855a05

Please sign in to comment.