Skip to content

Commit aa274d1

Browse files
chore: wip
1 parent 2b55c9d commit aa274d1

7 files changed

Lines changed: 58 additions & 251 deletions

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,23 +77,29 @@ console.log(punycode.version) // Returns current version
7777
### Main Methods
7878

7979
- **`encode(input: string): string`**
80+
8081
Converts a string of Unicode symbols to a Punycode string of ASCII-only symbols.
8182

8283
- **`decode(input: string): string`**
84+
8385
Converts a Punycode string of ASCII-only symbols to a string of Unicode symbols.
8486

8587
- **`toASCII(input: string): string`**
88+
8689
Converts a Unicode string representing a domain name or email address to Punycode.
8790

8891
- **`toUnicode(input: string): string`**
92+
8993
Converts a Punycode string representing a domain name or email address to Unicode.
9094

9195
### UCS-2 Utilities
9296

9397
- **`ucs2.decode(string: string): number[]`**
98+
9499
Creates an array containing the numeric code points of each Unicode character.
95100

96101
- **`ucs2.encode(codePoints: number[]): string`**
102+
97103
Creates a string based on an array of numeric code points.
98104

99105
## Error Handling

bun.lock

Lines changed: 17 additions & 192 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/config.md

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,30 @@ import path from 'node:path'
1212

1313
const config: ReverseProxyOptions = {
1414
/**
15-
* The from URL to proxy from.
16-
* Default: localhost:5173
15+
16+
_ The from URL to proxy from.
17+
_ Default: localhost:5173
18+
1719
*/
1820
from: 'localhost:5173',
1921

2022
/**
21-
* The to URL to proxy to.
22-
* Default: stacks.localhost
23+
24+
_ The to URL to proxy to.
25+
_ Default: stacks.localhost
26+
2327
*/
2428
to: 'stacks.localhost',
2529

2630
/**
27-
* The HTTPS settings.
28-
* Default: true
29-
* If set to false, the proxy will use HTTP.
30-
* If set to true, the proxy will use HTTPS.
31-
* If set to an object, the proxy will use HTTPS with the provided settings.
32-
*/
31+
32+
_ The HTTPS settings.
33+
_ Default: true
34+
_ If set to false, the proxy will use HTTP.
35+
_ If set to true, the proxy will use HTTPS.
36+
_ If set to an object, the proxy will use HTTPS with the provided settings.
37+
38+
_/
3339
https: {
3440
domain: 'stacks.localhost',
3541
hostCertCN: 'stacks.localhost',
@@ -48,10 +54,12 @@ const config: ReverseProxyOptions = {
4854
},
4955
5056
/**
51-
* The verbose setting.
52-
* Default: false
53-
* If set to true, the proxy will log more information.
54-
*/
57+
58+
_ The verbose setting.
59+
_ Default: false
60+
_ If set to true, the proxy will log more information.
61+
62+
_/
5563
verbose: false,
5664
}
5765

docs/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,4 @@ features:
2828
- title: "Binary"
2929
icon: "🚀"
3030
details: "Automatically builds a binary for your project out of your CLI."
31-
---
32-
33-
<Home />
31+
---

docs/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ It's rather simple to get your package development started:
1717
bunx degit stacksjs/ts-starter my-pkg
1818
cd my-pkg
1919

20-
# if you don't have pnpm installed, run `npm i -g pnpm`
20+
# if you don't have pnpm installed, run `npm i -g pnpm`
2121
bun i # install all deps
2222
bun run build # builds the library for production-ready use
2323

docs/sponsors.md

Lines changed: 10 additions & 10 deletions
Large diffs are not rendered by default.

docs/team.md

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,4 @@ layout: page
33
title: Meet the Team
44
description: A team of incredible people.
55
sidebar: false
6-
---
7-
8-
<script setup>
9-
import {
10-
VPTeamPage,
11-
VPTeamPageTitle,
12-
VPTeamPageSection,
13-
VPTeamMembers
14-
} from 'vitepress/theme'
15-
import { core, emeriti } from './_data/team'
16-
</script>
17-
18-
<VPTeamPage>
19-
<VPTeamPageTitle>
20-
<template #title>Meet the Team</template>
21-
<template #lead>
22-
A team of incredible talent & ambition.
23-
</template>
24-
</VPTeamPageTitle>
25-
<VPTeamMembers :members="core" />
26-
<!-- <VPTeamPageSection>
27-
<template #title>Team Emeriti</template>
28-
<template #lead>
29-
Here we honor some no-longer-active team members who have made valuable
30-
contributions in the past.
31-
</template>
32-
<template #members>
33-
<VPTeamMembers size="small" :members="emeriti" />
34-
</template>
35-
</VPTeamPageSection> -->
36-
</VPTeamPage>
6+
---

0 commit comments

Comments
 (0)