Skip to content

Commit 2ffb18a

Browse files
committed
Fix broken links
1 parent 0e24b2f commit 2ffb18a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/learn/clean.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ graph TD
109109

110110
Inside the terminal you're running `fuckingnode` from, we'll change directories to each added project's path. From the inside, we proceed as follows:
111111

112-
First, we basically do some basic validations before touching each project (is the lockfile present? are node modules installed? etc...), so we know what to do and we're sure all commands will work out of the box. Some validations, like the absence of `node_modules`, will result in that project being skipped into the next one. Other validations, like a `deno.lock` lockfile, will change our behavior (in this example, we'd skip some features as Deno doesn't support all cleaning features, [as noted here](../manual/cross-runtime.md)).
112+
First, we basically do some basic validations before touching each project (is the lockfile present? are node modules installed? etc...), so we know what to do and we're sure all commands will work out of the box. Some validations, like the absence of `node_modules`, will result in that project being skipped into the next one. Other validations, like a `deno.lock` lockfile, will change our behavior (in this example, we'd skip some features as Deno doesn't support all cleaning features, [as noted here](./cross-runtime-support.md)).
113113

114114
Then, we seek a `fknode.yaml` config file - if present, we parse it and validate it. If not present, or invalid, **we run each CLI command from the open terminal**. When using `fuckingnode clean` you'll notice we don't add a loader whatsoever, but instead show you the raw output of each command as if you executed it yourself. That's because we did the same, each command is ran from the terminal you're on.
115115

@@ -135,4 +135,4 @@ Where `EXP` indicates experimental, `CAVEAT` indicates partial support / support
135135
| v2.0.0 | YES | YES | YES | CAVEAT | CAVEAT | NO | NO |
136136
| v1.0.0 | YES | YES | YES | NO | NO | NO | NO |
137137

138-
To learn more about cross-runtime compatibility, [refer to this page](../manual/cross-runtime.md).
138+
To learn more about cross-runtime compatibility, [refer to this page](./cross-runtime.md).

docs/manual/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
> `fuckingnode clean [...many optional arguments]`, or `fkclean [...many optional arguments]`
66
7-
The core idea of FuckingNode is to automate cleanup of your NodeJS projects. On top of that base, additional maintenance features and [cross-runtime support](cross-runtime.md) exist as well.
7+
The core idea of FuckingNode is to automate cleanup of your NodeJS projects. On top of that base, additional maintenance features and [cross-runtime support](../learn/cross-runtime-support.md) exist as well.
88

99
## The `clean` command
1010

0 commit comments

Comments
 (0)