Skip to content

Commit 3a236a4

Browse files
committed
docs: add pesde installation instructions
1 parent 3a2fba6 commit 3a236a4

File tree

7 files changed

+66
-6
lines changed

7 files changed

+66
-6
lines changed

docs/docs/getting-started.md

+6
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ after running `wally install`.
2626
If you're using the fork of Wally for Lune, you can use
2727
[lune-wally-package-types](https://github.com/VirtualButFake/lune-wally-package-types).
2828

29+
### With pesde
30+
31+
You can also install util.luau with [pesde](https://pesde.daimond113.com),
32+
unlike Wally, pesde supports types automatically, so you don't need to use any
33+
additional tools.
34+
2935
### Roblox Models
3036

3137
You can also install `util.luau` through `.rbxm` files, which are available in

docs/reference/future.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,19 @@ This utility is inspired by the
2222

2323
Learn more about [installation](/docs/getting-started#installation).
2424

25-
```toml-vue [Wally]
25+
::: code-group
26+
27+
```toml-vue [wally]
28+
[dependencies]
2629
future = "lukadev-0/future@{{ data.future }}"
2730
```
2831

32+
```sh-vue [pesde]
33+
pesde add lukadev_0/future@{{ data.future }}
34+
```
35+
36+
:::
37+
2938
## Static Functions
3039

3140
### Future.new

docs/reference/option.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,19 @@ This utility is inspired by the
2323

2424
Learn more about [installation](/docs/getting-started#installation).
2525

26-
```toml-vue [Wally]
26+
::: code-group
27+
28+
```toml-vue [wally]
29+
[dependencies]
2730
option = "lukadev-0/option@{{ data.option }}"
2831
```
2932

33+
```sh-vue [pesde]
34+
pesde add lukadev_0/option@{{ data.option }}
35+
```
36+
37+
:::
38+
3039
## Immutability
3140

3241
The `Option` type is immutable, meaning that once an `Option` is created, it

docs/reference/result.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,19 @@ This utility is inspired by the
2424

2525
Learn more about [installation](/docs/getting-started#installation).
2626

27-
```toml-vue [Wally]
27+
::: code-group
28+
29+
```toml-vue [wally]
30+
[dependencies]
2831
result = "lukadev-0/result@{{ data.result }}"
2932
```
3033

34+
```sh-vue [pesde]
35+
pesde add lukadev_0/result@{{ data.result }}
36+
```
37+
38+
:::
39+
3140
## Immutability
3241

3342
The `Result` type is immutable, meaning that once an `Result` is created, it

docs/reference/std.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,19 @@ See [supported runtimes](/docs/supported-runtimes) for more information.
1818

1919
Learn more about [installation](/docs/getting-started#installation).
2020

21-
```toml-vue [Wally]
21+
::: code-group
22+
23+
```toml-vue [wally]
24+
[dependencies]
2225
std = "lukadev-0/std@{{ data.std }}"
2326
```
2427

28+
```sh-vue [pesde]
29+
pesde add lukadev_0/std@{{ data.std }}
30+
```
31+
32+
:::
33+
2534
## Libraries
2635

2736
### std.task

docs/reference/threadpool.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,19 @@ This can make spawning threads significantly faster than using `task.spawn`.
2222

2323
Learn more about [installation](/docs/getting-started#installation).
2424

25-
```toml-vue [Wally]
25+
::: code-group
26+
27+
```toml-vue [wally]
28+
[dependencies]
2629
threadpool = "lukadev-0/threadpool@{{ data.threadpool }}"
2730
```
2831

32+
```sh-vue [pesde]
33+
pesde add lukadev_0/threadpool@{{ data.threadpool }}
34+
```
35+
36+
:::
37+
2938
## Functions
3039

3140
### threadpool.spawn

docs/reference/timer.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,19 @@ import { data } from "./package-versions.data.ts";
1414

1515
Learn more about [installation](/docs/getting-started#installation).
1616

17-
```toml-vue [Wally]
17+
::: code-group
18+
19+
```toml-vue [wally]
20+
[dependencies]
1821
timer = "lukadev-0/timer@{{ data.timer }}"
1922
```
2023

24+
```sh-vue [pesde]
25+
pesde add lukadev_0/timer@{{ data.timer }}
26+
```
27+
28+
:::
29+
2130
## Functions
2231

2332
### timer.delay

0 commit comments

Comments
 (0)