Skip to content

Commit 7ee2dda

Browse files
committed
feat: vite 기반 저장소 세팅
1 parent 2da56f8 commit 7ee2dda

Some content is hidden

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

44 files changed

+7773
-12186
lines changed

.eslintrc.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"rules": {},
3+
"env": {
4+
"es6": true,
5+
"node": true
6+
},
7+
"parserOptions": {
8+
"ecmaVersion": "latest"
9+
},
10+
"extends": ["eslint:recommended", "plugin:prettier/recommended"]
11+
}

.gitignore

+15-92
Original file line numberDiff line numberDiff line change
@@ -4,101 +4,24 @@ logs
44
npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
7+
pnpm-debug.log*
78
lerna-debug.log*
89

9-
# Diagnostic reports (https://nodejs.org/api/report.html)
10-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11-
12-
# Runtime data
13-
pids
14-
*.pid
15-
*.seed
16-
*.pid.lock
17-
18-
# Directory for instrumented libs generated by jscoverage/JSCover
19-
lib-cov
20-
21-
# Coverage directory used by tools like istanbul
22-
coverage
23-
*.lcov
24-
25-
# nyc test coverage
26-
.nyc_output
27-
28-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29-
.grunt
30-
31-
# Bower dependency directory (https://bower.io/)
32-
bower_components
33-
34-
# node-waf configuration
35-
.lock-wscript
36-
37-
# Compiled binary addons (https://nodejs.org/api/addons.html)
38-
build/Release
39-
40-
# Dependency directories
41-
node_modules/
42-
jspm_packages/
43-
44-
# TypeScript v1 declaration files
45-
typings/
46-
47-
# TypeScript cache
48-
*.tsbuildinfo
49-
50-
# Optional npm cache directory
51-
.npm
52-
53-
# Optional eslint cache
54-
.eslintcache
55-
56-
# Microbundle cache
57-
.rpt2_cache/
58-
.rts2_cache_cjs/
59-
.rts2_cache_es/
60-
.rts2_cache_umd/
61-
62-
# Optional REPL history
63-
.node_repl_history
64-
65-
# Output of 'npm pack'
66-
*.tgz
67-
68-
# Yarn Integrity file
69-
.yarn-integrity
70-
71-
# dotenv environment variables file
72-
.env
73-
.env.test
74-
75-
# parcel-bundler cache (https://parceljs.org/)
76-
.cache
77-
78-
# Next.js build output
79-
.next
80-
81-
# Nuxt.js build / generate output
82-
.nuxt
10+
node_modules
8311
dist
12+
dist-ssr
13+
*.local
8414

85-
# Gatsby files
86-
.cache/
87-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
88-
# https://nextjs.org/blog/next-9-1#public-directory-support
89-
# public
90-
91-
# vuepress build output
92-
.vuepress/dist
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
9325

94-
# Serverless directories
95-
.serverless/
9626

97-
# FuseBox cache
98-
.fusebox/
99-
100-
# DynamoDB Local files
101-
.dynamodb/
102-
103-
# TernJS port file
104-
.tern-port
27+
.env

src/index.js .gitkeep

File renamed without changes.

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

.prettierrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"endOfLine": "auto"
3+
}

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="middle" >
2-
<img width="200" src="https://i.ibb.co/JsjssdJ/popcorn.png">
2+
<img width="200" src="https://nextstep-storage.s3.ap-northeast-2.amazonaws.com/55617d4fd3b4439fb7fd594fd715c4f4">
33
</p>
44
<h2 align="middle">영화 리뷰</h2>
55
<p align="middle">비동기 통신을 이용하여 웹 API 요청하기</p>
@@ -14,7 +14,7 @@
1414
## 🔥 Projects!
1515

1616
<p align="middle">
17-
<img width="400" src="https://i.ibb.co/Fhfn3wD/image.png">
17+
<img width="400" src="https://nextstep-storage.s3.ap-northeast-2.amazonaws.com/ad8287dcbe5343b4942dc0c8820b7923">
1818

1919
</p>
2020

@@ -24,7 +24,7 @@
2424

2525
#### <img alt="Tip" src="https://img.shields.io/static/v1.svg?label=&message=Tip&style=flat-square&color=673ab8"> 로컬에서 서버 띄워서 손쉽게 핫리로드 기능 이용하는 방법
2626

27-
이 프로젝트에는 웹팩을 이용한 모듈 번들링 및 이와 관련된 스크립트가 적용된 상태입니다. 개발한 코드를 저장하자마자 html, css, js 등을 실시간으로 손쉽게 테스트해 볼 수 있습니다. 이를 위해서는 우선 npm이 설치되어 있어야 합니다. 아래의 명령어를 이용하여 각자의 운영체제에 맞게끔 npm을 설치해주세요.
27+
이 프로젝트에는 vite 빌드 도구를 이용한 모듈 번들링 및 이와 관련된 스크립트가 적용된 상태입니다. 개발한 코드를 저장하자마자 html, css, js 등을 실시간으로 손쉽게 테스트해 볼 수 있습니다. 이를 위해서는 우선 npm이 설치되어 있어야 합니다. 아래의 명령어를 이용하여 각자의 운영체제에 맞게끔 npm을 설치해주세요.
2828

2929
```
3030
npm install
@@ -46,10 +46,10 @@ npm run dev
4646

4747
## 🐞 Bug Report
4848

49-
버그를 발견한다면, [Issues](https://github.com/next-step/js-lotto/issues)에 등록해주세요.
49+
버그를 발견한다면, [Issues](https://github.com/next-step/js-movie-review/issues)에 등록해주세요.
5050

5151
<br/>
5252

5353
## 📝 License
5454

55-
This project is [MIT](https://github.com/next-step/js-lotto/blob/main/LICENSE) licensed.
55+
This project is [MIT](https://github.com/next-step/js-movie-review/blob/main/LICENSE) licensed.

images/logo.png

1.38 KB
Loading

images/modal_button_close.png

455 Bytes
Loading

images/star_empty.png

1.16 KB
Loading

images/star_filled.png

770 Bytes
Loading

images/woowacourse_logo.png

6.85 KB
Loading

index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<title>영화 리뷰</title>
77
</head>
88
<body>
9-
영화 리뷰 미션을 진행하세요
9+
<div id="app"></div>
10+
<script type="module" src="/src/main.js"></script>
1011
</body>
1112
</html>

0 commit comments

Comments
 (0)