Skip to content

Commit 28f33a6

Browse files
committed
chore: set casing for tsky, Tsky, Bluesky
1 parent 568e2c2 commit 28f33a6

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
<img src=".github/assets/tsky-logo.png" width="200" height="200">
33
</p>
44

5-
<h1 align="center">TSky</h1>
5+
<h1 align="center">tsky</h1>
66

77
<p align="center">
88
A lightweight, fast, universal and typed Bluesky API wrapper for Apps & Bots.
99
</p>
1010

11-
## ⚠️ TSky is still in development and is not ready for production use.
11+
## ⚠️ tsky is still in development and is not ready for production use.
1212

13-
TSksy is still in active development and is not ready for production use. If you want to contribute to the project, please read the [CONTRIBUTING.md](CONTRIBUTING.md) file or join our [Discord Server](https://discord.gg/KPD7XPUZn3).
13+
tsky is still in active development and is not ready for production use. If you want to contribute to the project, please read the [CONTRIBUTING.md](CONTRIBUTING.md) file or join our [Discord Server](https://discord.gg/KPD7XPUZn3).
1414

15-
TSky is a lightweight, fast, universal and typed Bluesky API wrapper for Apps & Bots. It's designed to be easy to use, lightweight and straightforward to use. It's built with TypeScript and has full type support.
15+
tsky is a lightweight, fast, universal and typed Bluesky API wrapper for Apps & Bots. It's designed to be easy to use, lightweight and straightforward to use. It's built with TypeScript and has full type support.
1616

1717
It was primarily built for the [Nimbus Client](https://github.com/nimbus-town/nimbus) but can be used in any other project that requires Bluesky API integration.
1818

@@ -48,9 +48,9 @@ console.log(profile.handle);
4848

4949
## Links
5050

51-
- [📚 TSky Documentation](https://tsky.dev/)
52-
- [🦋 TSky on Bluesky](https://bsky.app/profile/tsky.dev)
53-
- [📣 TSky Discord Server](https://discord.gg/KPD7XPUZn3)
51+
- [📚 tsky Documentation](https://tsky.dev/)
52+
- [🦋 tsky on Bluesky](https://bsky.app/profile/tsky.dev)
53+
- [📣 tsky Discord Server](https://discord.gg/KPD7XPUZn3)
5454
- [🦋 Nimbus on Bluesky](https://bsky.app/profile/nimbus.town)
5555

5656
## Contributing

docs/.vitepress/config.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { defineConfig } from 'vitepress';
22

33
// https://vitepress.dev/reference/site-config
44
export default defineConfig({
5-
title: 'TSky',
6-
description: 'A BlueSky API client for nimble apps and tools',
5+
title: 'tsky',
6+
description: 'A Bluesky API client for nimble apps and tools',
77
themeConfig: {
88
nav: [
99
{ text: 'Home', link: '/' },

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
layout: home
44

55
hero:
6-
name: "TSky"
7-
text: "A BlueSky API client for nimble apps and tools"
8-
tagline: A BlueSky API client for nimble apps and tools
6+
name: "tsky"
7+
text: "A Bluesky API client for nimble apps and tools"
8+
tagline: A Bluesky API client for nimble apps and tools
99
actions:
1010
- theme: brand
1111
text: Get Started

packages/core/src/tsky/tsky.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type {
88
} from '@atproto/api';
99
import { Paginator } from './paginator';
1010

11-
export class TSky {
11+
export class Tsky {
1212
constructor(private instance: AppBskyNS) {}
1313

1414
/**

0 commit comments

Comments
 (0)