Skip to content

Commit 7d2264c

Browse files
committed
docs: split dependency management out of modules into its own guide
1 parent 2cfcf4e commit 7d2264c

7 files changed

Lines changed: 810 additions & 784 deletions

File tree

runtime/_data.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ export const sidebar = [
3131
{
3232
title: "Guides",
3333
items: [
34+
{
35+
title: "Dependency management",
36+
href: "/runtime/fundamentals/dependency_management/",
37+
},
3438
{
3539
title: "Web development",
3640
href: "/runtime/fundamentals/web_dev/",
@@ -69,7 +73,7 @@ export const sidebar = [
6973
href: "/runtime/fundamentals/security/",
7074
},
7175
{
72-
title: "Modules and dependencies",
76+
title: "Modules",
7377
href: "/runtime/fundamentals/modules/",
7478
},
7579
{

runtime/fundamentals/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ Read more about
272272

273273
The `lock` field in the `deno.json` file is used to specify configuration of the
274274
lock file that Deno uses to
275-
[ensure the integrity of your dependencies](/runtime/fundamentals/modules/#integrity-checking-and-lock-files).
275+
[ensure the integrity of your dependencies](/runtime/fundamentals/dependency_management/#integrity-checking-and-lock-files).
276276
A lock file records the exact versions and integrity hashes of the modules your
277277
project depends on, ensuring that the same versions are used every time the
278278
project is run, even if the dependencies are updated or changed remotely.

0 commit comments

Comments
 (0)