-
Notifications
You must be signed in to change notification settings - Fork 29
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
[Mission5/박민우] Project_Notion_VanillaJs 과제 #35
Open
MinwooP
wants to merge
18
commits into
4/#5_MinwooP
Choose a base branch
from
4/#5_MinwooP_working
base: 4/#5_MinwooP
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
44d7a0f
Setting: ESLint 설정
MinwooP 21c4329
Feature: 기본 컴포넌트 생성 및 기본 css 설정
MinwooP e9717d2
Feature: 화면 좌측 SideBar에 documents 렌더링하기
MinwooP ce340ef
Feat: 전체 Document 조회 API 연결
MinwooP cacde87
Feature: document item 내 각 버튼 클릭 시 기능 구현
MinwooP 005bf45
Feature: Root document 추가 기능, 선택된 document EditPage에 뿌려주기 기능 구현
MinwooP ec14f45
Feature: localStorage 접근 함수 유틸화
MinwooP e080f75
Feature: document 관련 API 함수 유틸화
MinwooP 1ce1d8a
Feature: 디바운스를 이용한 텍스트 자동저장 기능 구현
MinwooP 1ff16b7
Feature: history API를 이용한 SPA 구현
MinwooP 5799164
Feature: local Storage를 이용해 document 펼치기 상태 유지 기능 구현
MinwooP 6598a4c
Design: CSS 스타일링
MinwooP 782b2dd
Fix: 각종 error 수정 및 css 스타일링 추가
MinwooP fabedf3
Feature: 주석 제거 및 문자열 util화 및 함수명 변경
MinwooP 9c8489d
Fix: node_modules 폴더 git 추적에서 제외
MinwooP 50bbf0b
Remove: eslint 관련 폴더 삭제
MinwooP 0c7848c
Fix: node_modules 폴더 추적에서 제외
MinwooP c80aea6
Merge branch '4/#5_MinwooP_working' of https://github.com/prgrms-fe-d…
MinwooP File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
commonjs: true, | ||
es2021: true, | ||
}, | ||
extends: "eslint:recommended", | ||
overrides: [ | ||
{ | ||
env: { | ||
node: true, | ||
}, | ||
files: [".eslintrc.{js,cjs}"], | ||
parserOptions: { | ||
sourceType: "script", | ||
}, | ||
}, | ||
], | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
sourceType: "module", | ||
}, | ||
rules: {}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/node_modules/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. meta 설정에 있어 어떤 값들이 들어갈 수 있는지 이참에 찾아보면 좋을것 같네요~ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 넵 ! meta 태그를 이용한 검색 엔진 최적화를 위해 노력하겠습니다 ㅎㅎㅎ |
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>노션 클로닝 프로젝트</title> | ||
<link rel="stylesheet" href="./style.css" /> | ||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&family=PT+Serif:wght@400;700&display=swap" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
<body> | ||
<main id="app"></main> | ||
<script src="/src/main.js" type="module"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
번들링이나 린트, 프리티어 설정 다음 과제 때는 제대로 파서 적용 해야겠습니다.
아! 이번주 저의 스터디 주제로 쓰면 되겠네요 ㅎㅎ