Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cursor, prettier #2

Open
wants to merge 29 commits into
base: hyunjo
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ea22025
์˜ค๋””์˜ค ์ž‘์—…์ค‘
gbwlxhd97 Apr 3, 2022
6eb1637
์ผ๋ฐ˜์˜ค๋””์˜ค
gbwlxhd97 Apr 5, 2022
d2694f0
๋ผ์šฐํŒ…์œผ๋กœ ์•ˆ๋Š๊ธฐ๋Š” ๋ผ๋””์˜ค
gbwlxhd97 Apr 6, 2022
98b8451
useCallback ์ ์šฉ
gbwlxhd97 Apr 6, 2022
d107fe2
a ํƒœ๊ทธ๋กœ ๊ฐ•์ œ ์žฌ์ƒ
gbwlxhd97 Apr 9, 2022
de3c773
audio ๊ณตํ†ต ์ปดํฌ๋„ŒํŠธ1์ฐจ ๊ตฌํ˜„ ์ž๋™์žฌ์ƒ์€ x
gbwlxhd97 Apr 9, 2022
864ceca
vite test..
gbwlxhd97 Apr 10, 2022
167dbb9
๊ธฐ์กดํŒŒ์ผ์‚ญ์ œ
gbwlxhd97 Apr 10, 2022
3afe922
ํด๋”๊ตฌ์กฐ ์ •๋ฆฌ
gbwlxhd97 Apr 10, 2022
7888519
๋ฐ”์ดํŠธ ์…‹์—…
gbwlxhd97 Apr 10, 2022
19de014
๋ฐ”์ดํŠธ ํด๋”๊ตฌ์กฐ ๋ณ€๊ฒฝ:
gbwlxhd97 Apr 10, 2022
621cbc8
use vite
gbwlxhd97 Apr 10, 2022
714023e
main ๋ธŒ๋žœ์น˜ ๋ณ‘ํ•ฉ
gbwlxhd97 Apr 10, 2022
c0ae089
์—๋Ÿฌ ์ˆ˜์ •
gbwlxhd97 Apr 10, 2022
f260920
๊ธฐ๋ณธvite๋กœ ์…‹์—…
gbwlxhd97 Apr 10, 2022
65e93a8
ignore dist update
gbwlxhd97 Apr 10, 2022
985c275
package.json ์ˆ˜์ •
gbwlxhd97 Apr 10, 2022
f916033
toml ์ถ”๊ฐ€
gbwlxhd97 Apr 11, 2022
62c94b6
toml ์ˆ˜์ •
gbwlxhd97 Apr 11, 2022
a0519a3
vanilla-extract setup && router-dom
gbwlxhd97 Apr 12, 2022
e82621d
chore: prettier ์„ค์ •
Kim-Hyunjo Apr 15, 2022
1ec5db4
feat: App์— themeClass ์ ์šฉ
Kim-Hyunjo Apr 15, 2022
75f98e3
chore: ํ•„์š”์—†๋Š” css ํŒŒ์ผ ์‚ญ์ œ
Kim-Hyunjo Apr 15, 2022
b7e93b5
chore: ๋ฐฉ๊ธˆ ์ง€์šด css ํŒŒ์ผ import๋ฌธ ์‚ญ์ œ
Kim-Hyunjo Apr 15, 2022
7bbd741
style: ๋ฉ‹์ง„ ์Šคํƒ€์ผ๋ง์„ ์œ„ํ•ด reset.css App ์ „์ฒด ์ ์šฉ
Kim-Hyunjo Apr 15, 2022
703509d
chore: ์ปค์„œ์— ์‚ฌ์šฉํ•  svg ํŒŒ์ผ ์ €์žฅ
Kim-Hyunjo Apr 15, 2022
b35bf56
chore: favicon ์œ„์น˜ ๋ณ€๊ฒฝ
Kim-Hyunjo Apr 15, 2022
f9575f9
fix: exampleStyle -> appStyle๋กœ ๋„ค์ด๋ฐ ๋ณ€๊ฒฝ
Kim-Hyunjo Apr 15, 2022
e0db261
feat: cursor custom
Kim-Hyunjo Apr 15, 2022
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
41 changes: 21 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
12 changes: 12 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
}
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ์‰ผ์‰ผ ํ”„๋กœ์ ํŠธ
# ์‰ผ์‰ผํ”„๋กœ์ ํŠธ

## ๋ฐฐํฌ ๋ธŒ๋žœ์น˜ -> master
## ๋ฐฐํฌ ๋ธŒ๋žœ์น˜๋Š” master

### ํ…Œ์ŠคํŠธ ๋ฐฐํฌ ๋„๋ฉ”์ธ : https://sharp-yalow-b97865.netlify.app
## vite Setup! + react ts

## deploy : CI/CD Netlify

### ๋„๋ฉ”์ธ : https://swim-swim.netlify.app/
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/assets/images/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
3 changes: 3 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build]
command = "npm run build"
publish = "dist"
Loading