Skip to content

Commit c87a137

Browse files
committed
chore: smol changes
1 parent 3895875 commit c87a137

File tree

10 files changed

+116
-232
lines changed

10 files changed

+116
-232
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Contributions to Sablier Docs are welcome by anyone interested in improving read
1717
```bash
1818
git clone https://github.com/sablier-labs/docs.git sablier-docs
1919
cd sablier-docs
20-
just install
20+
bun install
2121
```
2222

2323
### Available Commands

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ $ bun install
1414
### Local Development
1515

1616
```sh
17-
$ bun run start
17+
$ just start
1818
```
1919

2020
This command starts a local development server and opens up a browser window. Most changes are reflected live without
@@ -23,7 +23,7 @@ having to restart the server.
2323
### Build
2424

2525
```sh
26-
$ bun run build
26+
$ just build
2727
```
2828

2929
This command generates static content into the `build` directory, and can be served using any static contents hosting
@@ -32,7 +32,7 @@ service.
3232
### Clear cache
3333

3434
```sh
35-
$ bun run clear
35+
$ just clean
3636
```
3737

3838
## License

bun.lock

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

docs/concepts/05-merkle-airdrops.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ date fund it with the airdropped tokens.
104104
gas fees.
105105
2. **You keep full control over unclaimed Tokens**. If a recipient doesn't claim their airdrop, it's not created, and
106106
you remain in full control over their allocation.
107-
108107
- This applies only if the campaign has an expiration date. If there is no expiration date, you can only clawback
109108
during the grace period, and the recipients can claim their airdrop at any time in the future.
110109

docs/guides/airdrops/02-airdrops-deployments.mdx renamed to docs/guides/airdrops/02-deployments.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A few noteworthy details about the deployments:
1717
- All contracts are non-upgradeable
1818
- The source code is verified on Etherscan across all chains
1919

20-
## Previous Versions
20+
## Versions
2121

2222
This repository is the successor of [Lockup Periphery](https://github.com/sablier-labs/v2-periphery), which has been
2323
discontinued. For previous deployments, please refer to the
File renamed without changes.
File renamed without changes.
File renamed without changes.

justfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ build: autogen
1818
bun docusaurus clear
1919
bunx del-cli src/autogen/**/*.mdx
2020

21-
# Deploy website to VercelV
21+
# Deploy website to Vercel
2222
deploy:
2323
bun vercel pull --environment=production --token=$VERCEL_TOKEN --yes
2424
bun vercel build --prod --token=$VERCEL_TOKEN
@@ -49,8 +49,7 @@ setup:
4949
bun husky
5050

5151
# Start development server with autogen
52-
start:
53-
bun run autogen
52+
start: autogen
5453
bun docusaurus start
5554

5655
# Run Jest tests

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@
4242
"function-plot": "^1.25",
4343
"lodash": "^4.17",
4444
"prism-react-renderer": "^2.4",
45-
"react": "18.2",
46-
"react-dom": "18.2",
45+
"react": "18.2.0",
46+
"react-dom": "18.2.0",
4747
"rehype-external-links": "^3.0",
4848
"rehype-katex": "7",
4949
"remark-math": "6",
50-
"sablier": "1.0.0-beta.4"
50+
"sablier": "1.0.0-beta.6"
5151
},
5252
"devDependencies": {
5353
"@biomejs/biome": "2.0.0-beta.5",
@@ -59,6 +59,7 @@
5959
"@sablier/devkit": "github:sablier-labs/devkit#main",
6060
"@types/eslint": "^9.6.1",
6161
"@types/node": "^24.0",
62+
"bufferutil": "^4.0.9",
6263
"commander": "^14.0",
6364
"eslint": "^9.29",
6465
"eslint-plugin-mdx": "^3.5",
@@ -68,6 +69,7 @@
6869
"lint-staged": "^16.1",
6970
"prettier": "^3.5",
7071
"typescript": "5.8.3",
72+
"utf-8-validate": "^6.0.5",
7173
"vercel": "^43.1"
7274
},
7375
"engines": {
@@ -77,8 +79,8 @@
7779
"keywords": [
7880
"asset-streaming",
7981
"blockchain",
80-
"cryptotokens",
81-
"cryptoassets",
82+
"crypto-assets",
83+
"crypto-tokens",
8284
"ethereum",
8385
"evm",
8486
"money-streaming",

0 commit comments

Comments
 (0)