Skip to content

Commit

Permalink
chore: fix repo and docs links
Browse files Browse the repository at this point in the history
  • Loading branch information
christianjuth committed Oct 1, 2024
1 parent f333762 commit 4ed6957
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ This makes it perfect for headless systems, APIs, and server-side applications w

---

### Documentation

See [christianjuth.github.io/isomorphic-svg-charts](https://christianjuth.github.io/isomorphic-svg-charts/).

---

### Why Use This Library?

- **Zero dependencies**: Keeps your bundle size small and performance fast.
Expand Down
2 changes: 1 addition & 1 deletion apps/demo/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default function Home() {
<main className="flex flex-col gap-4 row-start-2 items-center sm:items-start">
<h1 className="font-bold text-3xl">Examples</h1>
<p>
Demo app for `better-react-server-actions`.
Demo app for `isomorphic-svg-charts`.
</p>

<ol className="list-inside list-decimal text-sm text-center sm:text-left font-[family-name:var(--font-geist-mono)]">
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/theme.config.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ export default {
<FaChartArea style={{ color: '#black', fontSize: '1.5rem' }} />
<b style={{ marginLeft: '0.5ch' }}>Isomorphic SVG Charts</b>
</>,
docsRepositoryBase: 'https://github.com/christianjuth/better-react-server-actions/tree/main/apps/docs',
docsRepositoryBase: 'https://github.com/christianjuth/isomorphic-svg-charts/tree/main/apps/docs',
project: {
link: 'https://www.npmjs.com/package/better-react-server-actions',
link: 'https://www.npmjs.com/package/isomorphic-svg-charts',
icon: (
<div style={{ position: 'relative', height: '2rem' }}>
<div style={{ position: 'absolute', inset: 5, background: 'white' }} />
Expand Down
6 changes: 6 additions & 0 deletions packages/isomorphic-svg-charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ This makes it perfect for headless systems, APIs, and server-side applications w

---

### Documentation

See [christianjuth.github.io/isomorphic-svg-charts](https://christianjuth.github.io/isomorphic-svg-charts/).

---

### Why Use This Library?

- **Zero dependencies**: Keeps your bundle size small and performance fast.
Expand Down
10 changes: 5 additions & 5 deletions packages/isomorphic-svg-charts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "isomorphic-svg-charts",
"version": "0.0.0-alpha1",
"version": "0.0.0-alpha2",
"description": "A lightweight, environment-agnostic SVG charting library that works both in the browser and server-side, with no dependencies and no DOM reliance.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand All @@ -23,13 +23,13 @@
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"dev": "nodemon --watch src -e ts --exec 'yarn build:esm && yarn build:cjs'",
"test": "vitest --typecheck",
"prepublishOnly": "yarn vitest --watch=false && yarn build"
"prepublishOnly": "vitest --watch=false && yarn build"
},
"author": "Christian Juth",
"license": "MIT",
"repository": "christianjuth/better-react-server-actions",
"homepage": "https://christianjuth.github.io/better-react-server-actions",
"bugs": "https://github.com/christianjuth/better-react-server-actions/issues",
"repository": "christianjuth/isomorphic-svg-charts",
"homepage": "https://christianjuth.github.io/isomorphic-svg-charts",
"bugs": "https://github.com/christianjuth/isomorphic-svg-charts/issues",
"devDependencies": {
"nodemon": "^3.1.7",
"typescript": "^5.6.2",
Expand Down

0 comments on commit 4ed6957

Please sign in to comment.