Skip to content

Commit

Permalink
gulp 설치 커맨드 수정
Browse files Browse the repository at this point in the history
제공해주신 자료로 gulp 공부 잘 하고 있습니다. 감사합니다~
어제 gulp 공식 페이지를 보았더니 gulp 글로벌 설치 커맨드가 gulp-cli로 변경된 것으로 보여서 위에 반영했습니다. 확인해주시면 감사하겠습니다~
  • Loading branch information
kination authored Jul 15, 2016
1 parent 60a464c commit dac3df5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ $ npm init
package.json 파일이 생성되었다면, 아래와 같이 gulp 를 global 과 local 모두 설치해줍니다.

```bash
$ npm install gulp --global
$ npm install gulp --save-dev
$ npm install --global gulp-cli
$ npm install --save-dev gulp
```

--save-dev 옵션으로 설치해주는 이유는, 대부분 gulp 가 production 이 아닌 개발 과정에서만 필요하기 때문에, NODE_ENV 의 값이 production 인 경우 gulp가 설치되지 않도록 하기 위해서 입니다.
Expand Down

0 comments on commit dac3df5

Please sign in to comment.