Skip to content

Commit

Permalink
fix: add missing old redirects (#758)
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister authored Aug 28, 2024
1 parent 1854f54 commit 67d3b1a
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 4 deletions.
1 change: 1 addition & 0 deletions runtime/fundamentals/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ oldUrl:
- /runtime/manual/basics/permissionsDeno/
- /manual/basics/permissions
- /runtime/manual/basics/permissions
- /runtime/manual/getting_started/permissions
---

Deno is secure by default. Unless you specifically enable it, a program run with
Expand Down
1 change: 1 addition & 0 deletions runtime/fundamentals/typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ oldUrl:
- /manual/advanced/typescript
- /runtime/manual/advanced/typescript/overview/
- /runtime/manual/advanced/typescript/types/
- /runtime/advanced/typescript/configuration/
---

TypeScript is a first class language in Deno, just like JavaScript or
Expand Down
5 changes: 4 additions & 1 deletion runtime/getting_started/command_line_interface.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
title: Command Line Interface
oldUrl: /manual/getting_started/command_line_interface
oldUrl:
- /manual/getting_started/command_line_interface
- /runtime/manual/getting_started/command_line_interface/
- /runtime/fundamentals/command_line_interface/
---

Deno is a command line program. The Deno command line interface (CLI) can be
Expand Down
2 changes: 1 addition & 1 deletion runtime/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,6 @@ Hello, world!
Congratulations! You've just run your first Deno program. Read on to learn more
about the Deno runtime.

- [Making a Deno project](/runtime/getting_started/installation/)
- [Making a Deno project](/runtime/getting_started/first_project/)
- [Setting up your environment](/runtime/getting_started/setup_your_environment/)
- [Using the CLI](/runtime/getting_started/command_line_interface)
4 changes: 3 additions & 1 deletion runtime/manual/advanced/typescript/types.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: "Types and Type Declarations"
oldUrl: /runtime/manual/typescript/types/
oldUrl:
- /runtime/manual/typescript/types/
- /runtime/fundamentals/types/
---

One of the design principles of Deno is no non-standard module resolution. When
Expand Down
4 changes: 3 additions & 1 deletion runtime/manual/basics/import_maps.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: "Import Maps"
oldUrl: /runtime/manual/basics/modules/import_maps/
oldUrl:
- /runtime/manual/basics/modules/import_maps/
- /runtime/basics/import_maps/
---

In order for Deno to resolve a _bare specifier_ like `"react"` or `"lodash"`, it
Expand Down
2 changes: 2 additions & 0 deletions runtime/manual/basics/modules/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
title: "ECMAScript Modules in Deno"
oldUrl:
- /runtime/fundamentals/esm.sh
---

Deno by default standardizes the way modules are imported in both JavaScript and
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
title: "Building `deno` from Source"
oldUrl:
- /runtime/references/contributing/building_from_source/
---

Below are instructions on how to build Deno from source. If you just want to use
Expand Down
2 changes: 2 additions & 0 deletions runtime/manual/tools/formatter.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
title: "`deno fmt`, code formatting"
oldUrl:
- /runtime/tools/formatter/
---

Deno ships with a built-in code formatter that will auto-format the following
Expand Down
3 changes: 3 additions & 0 deletions runtime/manual/tools/linter.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
---
title: "`deno lint`, linter"
oldUrl:
- /runtime/tools/linter/
- /runtime/fundamentals/linting_and_formatting/lint-cli-ref
---

Deno ships with a built-in code linter for JavaScript and TypeScript.
Expand Down
2 changes: 2 additions & 0 deletions runtime/manual/tools/task_runner.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
title: "`deno task`"
oldUrl:
- /runtime/tools/task_runner/
---

`deno task` provides a cross-platform way to define and execute custom commands
Expand Down

0 comments on commit 67d3b1a

Please sign in to comment.