Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy

on:
push:
branches: ["main"]
branches: ['main']

jobs:
deploy:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Integration

on:
push:
branches: ["main"]
branches: ['main']
pull_request:
branches: ["main"]
branches: ['main']

jobs:
build:
Expand All @@ -20,9 +20,9 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache: 'npm'

- name: "Install Dependencies"
- name: 'Install Dependencies'
run: npm ci
- name: "Build command"
- name: 'Build command'
run: npm run build
1 change: 1 addition & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bunx --no-install commitlint --edit "$1"
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npx lint-staged
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugins": ["prettier-plugin-tailwindcss"],
"singleQuote": true
}
5 changes: 0 additions & 5 deletions app/page.tsx

This file was deleted.

178 changes: 159 additions & 19 deletions bun.lock

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions commitlint.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import type { UserConfig } from '@commitlint/types';

const configuration: UserConfig = {
extends: ['@commitlint/config-conventional'],
formatter: '@commitlint/format',
rules: {
'type-enum': [
2,
'always',
[
'feat',
'fix',
'docs',
'style',
'refactor',
'perf',
'test',
'build',
'ci',
'chore',
'revert',
],
],
'subject-case': [2, 'always', 'sentence-case'],
},
};

export default configuration;
12 changes: 6 additions & 6 deletions components.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
"tsx": true,
"tailwind": {
"config": "",
"css": "app/globals.css",
"css": "src/app/globals.css",
"baseColor": "zinc",
"cssVariables": true,
"prefix": ""
},
"iconLibrary": "lucide",
"rtl": false,
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
"components": "@/src/components",
"utils": "@/src/lib/utils",
"ui": "@/src/components/ui",
"lib": "@/src/lib",
"hooks": "@/src/hooks"
},
"menuColor": "default",
"menuAccent": "subtle",
Expand Down
48 changes: 0 additions & 48 deletions components/ui/badge.tsx

This file was deleted.

53 changes: 0 additions & 53 deletions components/ui/button.tsx

This file was deleted.

94 changes: 0 additions & 94 deletions components/ui/card.tsx

This file was deleted.

Loading