Skip to content

Commit 80a5380

Browse files
committed
refactor: project name
1 parent 4c89350 commit 80a5380

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+97
-101
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"linked": [],
77
"access": "public",
88
"updateInternalDependencies": "patch",
9-
"ignore": ["@orderbook-visualizer/docs"]
9+
"ignore": ["@krono/docs"]
1010
}

.github/dependabot.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ updates:
44
- package-ecosystem: "npm"
55
directory: "/"
66
schedule:
7-
interval: "daily"
7+
interval: "monthly"
88
allow:
99
- dependency-type: "all"
1010
open-pull-requests-limit: 10
@@ -22,7 +22,7 @@ updates:
2222
- package-ecosystem: "npm"
2323
directory: "/apps/web"
2424
schedule:
25-
interval: "daily"
25+
interval: "monthly"
2626
allow:
2727
- dependency-type: "all"
2828
open-pull-requests-limit: 10
@@ -41,7 +41,7 @@ updates:
4141
- package-ecosystem: "npm"
4242
directory: "/apps/docs"
4343
schedule:
44-
interval: "daily"
44+
interval: "monthly"
4545
allow:
4646
- dependency-type: "all"
4747
open-pull-requests-limit: 10
@@ -60,7 +60,7 @@ updates:
6060
- package-ecosystem: "npm"
6161
directory: "/packages/ui"
6262
schedule:
63-
interval: "daily"
63+
interval: "monthly"
6464
allow:
6565
- dependency-type: "all"
6666
open-pull-requests-limit: 10
@@ -75,11 +75,11 @@ updates:
7575
- dependency-name: "*"
7676
update-types: ["version-update:semver-major", "version-update:semver-minor"]
7777

78-
# /packages/utils
78+
# /packages/sdk
7979
- package-ecosystem: "npm"
80-
directory: "/packages/utils"
80+
directory: "/packages/sdk"
8181
schedule:
82-
interval: "daily"
82+
interval: "monthly"
8383
allow:
8484
- dependency-type: "all"
8585
open-pull-requests-limit: 10
@@ -89,7 +89,7 @@ updates:
8989
include: "scope"
9090
labels:
9191
- "dependencies"
92-
- "utils"
92+
- "sdk"
9393
ignore:
9494
- dependency-name: "*"
9595
update-types: ["version-update:semver-major", "version-update:semver-minor"]

.idea/modules.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Orderbook Visualizer
1+
# Krono
22

33
![Static Badge](https://img.shields.io/badge/shadcn%2Fui-0.8.0-blue?link=https%3A%2F%2Fgithub.com%2Fshadcn%2Fui)
44

5-
[![CI](https://github.com/fapiper/orderbook-visualizer/actions/workflows/ci.yml/badge.svg)](https://github.com/fapiper/orderbook-visualizer/actions/workflows/ci.yml)
6-
[![Known Vulnerabilities](https://snyk.io/test/github/fapiper/orderbook-visualizer/badge.svg)](https://snyk.io/test/github/fapiper/orderbook-visualizer)
7-
[![License](https://img.shields.io/github/license/fapiper/orderbook-visualizer.svg)](https://github.com/fapiper/orderbook-visualizer/blob/main/LICENSE)
5+
[![CI](https://github.com/fapiper/krono/actions/workflows/ci.yml/badge.svg)](https://github.com/fapiper/krono/actions/workflows/ci.yml)
6+
[![Known Vulnerabilities](https://snyk.io/test/github/fapiper/krono/badge.svg)](https://snyk.io/test/github/fapiper/krono)
7+
[![License](https://img.shields.io/github/license/fapiper/krono.svg)](https://github.com/fapiper/krono/blob/main/LICENSE)
88

99
![Bun](https://img.shields.io/badge/Bun-%23000000.svg?&logo=bun&logoColor=white)
1010

@@ -38,10 +38,10 @@ A powerful monorepo starter template featuring Next.js, Nextra, and a shared pre
3838

3939
```sh
4040
# Clone the repository
41-
git clone https://github.com/fapiper/orderbook-visualizer.git
41+
git clone https://github.com/fapiper/krono.git
4242

4343
# Navigate to the project directory
44-
cd orderbook-visualizer
44+
cd krono
4545

4646
# Install dependencies
4747
bun install
@@ -64,21 +64,21 @@ bun ui:add:component <component-name>
6464
graph TD
6565
A[Turborepo] --> B[Apps]
6666
A --> C[Packages]
67-
B --> D[@orderbook-visualizer/docs]
68-
B --> E[@orderbook-visualizer/web]
69-
B --> F[@orderbook-visualizer/storybook]
70-
C --> G[@orderbook-visualizer/ui]
71-
C --> H[@orderbook-visualizer/sdk]
72-
C --> I[@orderbook-visualizer/tsconfig]
67+
B --> D[@krono/docs]
68+
B --> E[@krono/web]
69+
B --> F[@krono/storybook]
70+
C --> G[@krono/ui]
71+
C --> H[@krono/sdk]
72+
C --> I[@krono/tsconfig]
7373
```
7474

7575
| App/Package | Description |
7676
|-------------|-------------|
77-
| `@orderbook-visualizer/docs` | Documentation site powered by [Nextra 3 alpha](https://the-guild.dev/blog/nextra-3) |
78-
| `@orderbook-visualizer/web` | Main Next.js web application |
79-
| `@orderbook-visualizer/ui` | Core React components and design system shared by both `web` and `docs` applications (powered by shadcn/ui) |
80-
| `@orderbook-visualizer/sdk` | Shared React utilities |
81-
| `@orderbook-visualizer/tsconfig` | Shared `tsconfig.json` configurations |
77+
| `@krono/docs` | Documentation site powered by [Nextra 3 alpha](https://the-guild.dev/blog/nextra-3) |
78+
| `@krono/web` | Main Next.js web application |
79+
| `@krono/ui` | Core React components and design system shared by both `web` and `docs` applications (powered by shadcn/ui) |
80+
| `@krono/sdk` | Shared React utilities |
81+
| `@krono/tsconfig` | Shared `tsconfig.json` configurations |
8282

8383
Each package and app is 100% [TypeScript](https://www.typescriptlang.org/).
8484

@@ -95,7 +95,7 @@ This Turborepo has some additional tools already set up for you:
9595

9696
### Storybook
9797

98-
This Turborepo includes Storybook for component development and documentation. Storybook is set up for both the `@orderbook-visualizer/web` and `@orderbook-visualizer/ui` packages, allowing the development and showcasing of components from both your main application and your shared UI library.
98+
This Turborepo includes Storybook for component development and documentation. Storybook is set up for both the `@krono/web` and `@krono/ui` packages, allowing the development and showcasing of components from both your main application and your shared UI library.
9999

100100
To run Storybook:
101101

@@ -140,7 +140,7 @@ This setup includes several useful Storybook addons:
140140
* `bun lint:fix` - Lint, format, and fix all packages
141141
* `bun changeset` - Generate a changeset 🧑‍🔧 - WIP
142142
* `bun clean` - Clean up all `node_modules` and `dist` folders (runs each package's clean script)
143-
* `bun ui:add:component` - Add a shadcn/ui component to the `@orderbook-visualizer/ui` package
143+
* `bun ui:add:component` - Add a shadcn/ui component to the `@krono/ui` package
144144
* `bun storybook` - Run Storybook for component development and documentation
145145

146146
### Add a new app or package
@@ -166,7 +166,7 @@ You will be prompted to choose the name and workspace type (app or package) of t
166166
167167
### CI
168168

169-
[![CI](https://github.com/fapiper/orderbook-visualizer/actions/workflows/ci.yml/badge.svg)](https://github.com/fapiper/orderbook-visualizer/actions/workflows/ci.yml)
169+
[![CI](https://github.com/fapiper/krono/actions/workflows/ci.yml/badge.svg)](https://github.com/fapiper/krono/actions/workflows/ci.yml)
170170

171171
This Turborepo uses [GitHub Actions](https://github.com/features/actions) for CI.
172172

@@ -233,15 +233,15 @@ The `docs` and `web` apps can be deployed to Vercel without any additional confi
233233

234234
You can view the test deployments for these apps:
235235

236-
* `apps/web`: [https://orderbook-visualizer-web.vercel.app/](https://orderbook-visualizer-web.vercel.app/)
237-
* `apps/docs`: [https://orderbook-visualizer-docs.vercel.app/](https://orderbook-visualizer-docs.vercel.app/)
236+
* `apps/web`: [https://krono-web.vercel.app/](https://krono-web.vercel.app/)
237+
* `apps/docs`: [https://krono-docs.vercel.app/](https://krono-docs.vercel.app/)
238238

239239
### Storybook Deployment
240240

241241
The `apps/storybook` is automatically deployed to GitHub Pages using a custom workflow.
242242

243243
* **Workflow File**: You can find the deployment workflow at `.github/workflows/storybook-deploy.yml`
244-
* **Deployment URL**: The deployed Storybook can be accessed at [https://fapiper.github.io/orderbook-visualizer/](https://fapiper.github.io/orderbook-visualizer/)
244+
* **Deployment URL**: The deployed Storybook can be accessed at [https://fapiper.github.io/krono/](https://fapiper.github.io/krono/)
245245

246246
## Useful Links and Thanks
247247

apps/docs/next.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import nextra from 'nextra';
44

55
const nextConfig = {
6-
transpilePackages: ['@orderbook-visualizer/ui'],
6+
transpilePackages: ['@krono/ui'],
77
reactStrictMode: true,
88
};
99

apps/docs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@orderbook-visualizer/docs",
2+
"name": "@krono/docs",
33
"version": "0.0.0",
44
"private": true,
55
"scripts": {
@@ -11,8 +11,8 @@
1111
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next"
1212
},
1313
"dependencies": {
14-
"@orderbook-visualizer/ui": "workspace:*",
15-
"@orderbook-visualizer/sdk": "workspace:*",
14+
"@krono/ui": "workspace:*",
15+
"@krono/sdk": "workspace:*",
1616
"next": "14.2.33",
1717
"nextra": "3.0.15",
1818
"nextra-theme-blog": "3.0.15",
@@ -22,7 +22,7 @@
2222
},
2323
"devDependencies": {
2424
"@biomejs/biome": "1.8.3",
25-
"@orderbook-visualizer/tsconfig": "workspace:*",
25+
"@krono/tsconfig": "workspace:*",
2626
"@types/node": "20.14.15",
2727
"@types/react": "18.3.13",
2828
"@types/react-dom": "18.3.1",

apps/docs/postcss.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import postcssConfig from '@orderbook-visualizer/ui/postcss.config';
1+
import postcssConfig from '@krono/ui/postcss.config';
22

33
export default postcssConfig;

apps/docs/src/pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { inter } from '../fonts';
44

55
import '../globals.css';
66

7-
// import '@orderbook-visualizer/ui/globals.css'; - Import this if you want to use the styles and components from the UI package
7+
// import '@krono/ui/globals.css'; - Import this if you want to use the styles and components from the UI package
88

99
import type { ReactElement } from 'react';
1010

apps/docs/src/pages/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{/* import { Button } from '@orderbook-visualizer/ui/components/ui/button'; */}
1+
{/* import { Button } from '@krono/ui/components/ui/button'; */}
22

33
# Introduction
44

0 commit comments

Comments
 (0)