Skip to content

Commit

Permalink
feat: simplify ui structure
Browse files Browse the repository at this point in the history
  • Loading branch information
2wheeh committed Feb 5, 2024
1 parent 9930e0e commit 571fa57
Show file tree
Hide file tree
Showing 85 changed files with 10,052 additions and 16,838 deletions.
File renamed without changes.
4 changes: 0 additions & 4 deletions ui/.gitattributes

This file was deleted.

46 changes: 29 additions & 17 deletions ui/.gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,36 @@
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# Swap the comments on the following lines if you don't wish to use zero-installs
# Documentation here: https://yarnpkg.com/features/zero-installs
.yarn/cache
#.pnp.*
# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# node_modules
**/node_modules
# next.js
/.next/
/out/

# Typecheck
**/tsconfig.tsbuildinfo
# production
/build

# testing
**/coverage
# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
# TODO
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
2 changes: 1 addition & 1 deletion ui/.husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

cd ui && yarn lint-staged
cd ui && npx lint-staged
28 changes: 0 additions & 28 deletions ui/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

This file was deleted.

874 changes: 0 additions & 874 deletions ui/.yarn/releases/yarn-3.6.3.cjs

This file was deleted.

9 changes: 0 additions & 9 deletions ui/.yarnrc.yml

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions ui/next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};

export default nextConfig;
Loading

0 comments on commit 571fa57

Please sign in to comment.