Skip to content

Commit 0f067fe

Browse files
committed
docs
1 parent 0be92de commit 0f067fe

File tree

8 files changed

+26
-8
lines changed

8 files changed

+26
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Typer Diff
22

3-
![Typer Diff Demo](assets/demo.png)
3+
![Typer Diff Demo](https://typer-diff.shivi.io/demo.png)
44

55
`type-diff` is a library to diff two strings, useful for showing for typing games (like [monkeytype](https://monkeytype.com/)) or for showing differences between two strings. It is a simple library that is easy to use and has no dependencies. It is also very fast and lightweight.
66

apps/docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Typer Diff Demo App
22

3-
![Typer Diff Demo](https://raw.githubusercontent.com/techboy-coder/typer-diff/main/assets/demo.png?token=GHSAT0AAAAAACSUZ6AC33WMWGPI4HJ5X47KZTYIUYQ)
3+
![Typer Diff Demo](https://typer-diff.shivi.io/demo.png)
44

55
`type-diff` is a library to diff two strings, useful for showing for typing games or for showing differences between two strings. It is a simple library that is easy to use and has no dependencies. It is also very fast and lightweight.
66

apps/docs/app/layout.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ import "./globals.css";
55
const inter = Inter({ subsets: ["latin"] });
66

77
export const metadata: Metadata = {
8-
title: "Create Next App",
9-
description: "Generated by create next app",
8+
title: "typer-diff",
9+
description:
10+
"type-diff is a library to diff two strings, useful for showing for typing games or for showing differences between two strings. It is a simple library that is easy to use and has no dependencies. It is also very fast and lightweight.",
1011
};
1112

1213
export default function RootLayout({

apps/docs/next.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
3-
output: "export",
3+
// output: "export",
44
};
55

66
export default nextConfig;
File renamed without changes.

docs

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/typer-diff/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Typer Diff
22

3-
![Typer Diff Demo](https://raw.githubusercontent.com/techboy-coder/typer-diff/main/assets/demo.png?token=GHSAT0AAAAAACSUZ6AC33WMWGPI4HJ5X47KZTYIUYQ)
3+
![Typer Diff Demo](https://typer-diff.shivi.io/demo.png)
44

55
`type-diff` is a library to diff two strings, useful for showing for typing games (like [monkeytype](https://monkeytype.com/)) or for showing differences between two strings. It is a simple library that is easy to use and has no dependencies. It is also very fast and lightweight.
66

packages/typer-diff/package.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
11
{
22
"name": "typer-diff",
33
"license": "MIT",
4-
"version": "0.2.0",
4+
"version": "0.9.0",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
77
"types": "dist/index.d.ts",
8+
"author": {
9+
"name": "Shivram Sambhus",
10+
"email": "[email protected]"
11+
},
12+
"description": "type-diff is a library to diff two strings, useful for showing for typing games or for showing differences between two strings. It is a simple library that is easy to use and has no dependencies. It is also very fast and lightweight.",
13+
"homepage": "http://typer-diff.shivi.io/",
14+
"bugs": "https://github.com/techboy-coder/typer-diff/issues",
15+
"repository": {
16+
"type": "git",
17+
"url": "https://github.com/techboy-coder/typer-diff",
18+
"directory": "packages/typer-diff"
19+
},
20+
"keywords": [
21+
"diff",
22+
"typer",
23+
"monkeytype",
24+
"typing"
25+
],
826
"scripts": {
927
"build": "tsup index.ts --format cjs,esm --dts --minify",
1028
"dev": "tsup index.ts --format cjs,esm --dts --watch",

0 commit comments

Comments
 (0)