Skip to content

Commit ac6af17

Browse files
committed
docs: fixed more links
1 parent 7f106d1 commit ac6af17

6 files changed

Lines changed: 20 additions & 4 deletions

File tree

apps/web/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"baseUrl": ".",
43
"target": "ESNext",
54
"lib": ["dom", "dom.iterable", "esnext"],
65
"allowJs": true,
@@ -16,8 +15,9 @@
1615
"jsx": "react-jsx",
1716
"incremental": true,
1817
"paths": {
18+
"*": ["./*"],
1919
"~/*": ["./src/*"],
20-
"collections/*": [".source/*"]
20+
"collections/*": ["./.source/*"]
2121
},
2222
"plugins": [
2323
{

packages/create/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Scaffold new TSTL-powered SLua projects.
1111
```bash
1212
npx @gwigz/slua-create
1313
# or
14+
pnpm dlx @gwigz/slua-create
15+
# or
1416
bunx @gwigz/slua-create
1517
```
1618

@@ -19,6 +21,8 @@ You can also pass a directory as the first argument:
1921
```bash
2022
npx @gwigz/slua-create my-project
2123
# or
24+
pnpm dlx @gwigz/slua-create my-project
25+
# or
2226
bunx @gwigz/slua-create my-project
2327
```
2428

@@ -31,7 +35,7 @@ bunx @gwigz/slua-create my-project
3135

3236
| Extra | Description |
3337
| ----------------- | -------------------------------------------------------------------------------------- |
34-
| JSX templates | [@gwigz/jsx-inline](https://github.com/gwigz/slua/tree/main/packages/jsx-inline) |
38+
| JSX templates | [@gwigz/jsx-inline](https://github.com/gwigz/jsx-inline) |
3539
| Config module | [@gwigz/slua-modules/config](https://github.com/gwigz/slua/tree/main/packages/modules) |
3640
| Yield module | [@gwigz/slua-modules/yield](https://github.com/gwigz/slua/tree/main/packages/modules) |
3741
| StyLua formatting | Lua output formatting via [StyLua](https://github.com/JohnnyMorganz/StyLua) |

packages/json/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ This is not for use with TSTL pipelines, use this for your projects that interac
99
```bash
1010
npm install @gwigz/slua-json
1111
# or
12+
pnpm add @gwigz/slua-json
13+
# or
1214
bun add @gwigz/slua-json
1315
```
1416

packages/modules/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Shared runtime modules for [SLua](https://github.com/gwigz/slua) projects.
77
```sh
88
npm install @gwigz/slua-modules
99
# or
10+
pnpm add @gwigz/slua-modules
11+
# or
1012
bun add @gwigz/slua-modules
1113
```
1214

@@ -20,4 +22,4 @@ bun add @gwigz/slua-modules
2022

2123
## Documentation
2224

23-
Full API reference and usage examples are available at [slua.gwigz.link/docs/create](https://slua.gwigz.link/docs/modules).
25+
Full API reference and usage examples are available at [slua.gwigz.link/docs/modules](https://slua.gwigz.link/docs/modules).

packages/tstl-plugin/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,3 +444,7 @@ const seen: Record<string, boolean> = {}
444444
```bash
445445
bun run build
446446
```
447+
448+
## Documentation
449+
450+
Full API reference and usage examples are available at [slua.gwigz.link/docs/slua](https://slua.gwigz.link/docs/slua).

packages/types/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,7 @@ Types are generated from `refs/lsl-definitions/*.yaml` by the `gen-types` tool:
3535
```bash
3636
bun run generate
3737
```
38+
39+
## Documentation
40+
41+
Full API reference and usage examples are available at [slua.gwigz.link/docs/slua](https://slua.gwigz.link/docs/slua).

0 commit comments

Comments
 (0)