Skip to content

Commit 6287719

Browse files
committed
docs: update library description to emphasize lightweight nature
1 parent 4208efe commit 6287719

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</h1>
44

55
<p align="center">
6-
<b>A fast, modern version-checking library for React Native, powered by <a href="https://github.com/mrousavy/nitro">Nitro Modules</a>.</b>
6+
<b>A lightweight, fast version-checking library for React Native, powered by <a href="https://github.com/mrousavy/nitro">Nitro Modules</a>.</b>
77
</p>
88

99
<p align="center">

docs/docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Getting Started
55

66
# Getting Started
77

8-
**react-native-nitro-version-check** is a fast, modern version-checking library for React Native, powered by [Nitro Modules](https://github.com/mrousavy/nitro).
8+
**react-native-nitro-version-check** is a lightweight, fast version-checking library for React Native, powered by [Nitro Modules](https://github.com/mrousavy/nitro).
99

1010
It's a drop-in replacement for the unmaintained [`react-native-version-check`](https://github.com/kimxogus/react-native-version-check) — rewritten from scratch for performance.
1111

@@ -15,7 +15,7 @@ It's a drop-in replacement for the unmaintained [`react-native-version-check`](h
1515
- **Store version lookup** from the App Store or Play Store
1616
- **Granular update checks** — major, minor, or patch
1717
- **Install source detection** — TestFlight, App Store, Play Store, or sideloaded
18-
- **Tiny footprint** — pure Swift on iOS, Kotlin on Android
18+
- **Lightweight** minimal footprint, pure Swift on iOS, Kotlin on Android
1919

2020
## Performance
2121

docs/docusaurus.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { themes as prismThemes } from "prism-react-renderer";
44

55
const config: Config = {
66
title: "Nitro Version Check",
7-
tagline: "A fast, modern version-checking library for React Native, powered by Nitro Modules.",
7+
tagline: "A lightweight, fast version-checking library for React Native, powered by Nitro Modules.",
88
favicon: "/img/nos.png",
99

1010
url: "https://alshehriali0.github.io",
@@ -66,7 +66,7 @@ const config: Config = {
6666
},
6767
{
6868
property: "og:description",
69-
content: "A fast, modern version-checking library for React Native, powered by Nitro Modules.",
69+
content: "A lightweight, fast version-checking library for React Native, powered by Nitro Modules.",
7070
},
7171
{
7272
property: "og:image",
@@ -90,7 +90,7 @@ const config: Config = {
9090
},
9191
{
9292
name: "twitter:description",
93-
content: "A fast, modern version-checking library for React Native, powered by Nitro Modules.",
93+
content: "A lightweight, fast version-checking library for React Native, powered by Nitro Modules.",
9494
},
9595
{
9696
name: "twitter:image",
@@ -99,7 +99,7 @@ const config: Config = {
9999
{
100100
name: "keywords",
101101
content:
102-
"react, native, nitro, version, check, react-native, nitro-modules, app-update, version-check, store-version",
102+
"react, native, nitro, version, check, react-native, nitro-modules, app-update, version-check, store-version, lightweight",
103103
},
104104
],
105105
tableOfContents: {

docs/src/components/HomepageFeatures/index.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,16 @@ const FeatureList: FeatureItem[] = [
4040
</>
4141
),
4242
},
43+
{
44+
title: "Lightweight",
45+
emoji: "\uD83D\uDCE6",
46+
description: <>Minimal footprint with no unnecessary dependencies. Pure Swift on iOS and Kotlin on Android.</>,
47+
},
4348
];
4449

4550
function Feature({ title, emoji, description }: FeatureItem) {
4651
return (
47-
<div className={clsx("col col--4")}>
52+
<div className={clsx("col col--3")}>
4853
<div className="text--center">
4954
<span className={styles.featureEmoji}>{emoji}</span>
5055
</div>

docs/src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default function Home(): React.ReactElement {
3232
return (
3333
<Layout
3434
title="Welcome"
35-
description="A fast, modern version-checking library for React Native, powered by Nitro Modules."
35+
description="A lightweight, fast version-checking library for React Native, powered by Nitro Modules."
3636
>
3737
<HomepageHeader />
3838
<main>

package/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-nitro-version-check",
33
"version": "1.0.1",
4-
"description": "react-native-nitro-version-check",
4+
"description": "A lightweight, fast version-checking library for React Native, powered by Nitro Modules",
55
"main": "lib/index",
66
"module": "lib/index",
77
"types": "lib/index.d.ts",
@@ -62,7 +62,8 @@
6262
"nitro-modules-version",
6363
"app store version",
6464
"play store version",
65-
"market version"
65+
"market version",
66+
"lightweight"
6667
],
6768
"repository": {
6869
"type": "git",

0 commit comments

Comments
 (0)