grunt Getting Started

1628 단어
grunt-cli 셸 설치
Note that installing grunt-cli does not install the Grunt task runner! The job of the Grunt CLI is simple: run the version of Grunt which has been installed next to a Gruntfile . This allows multiple versions of Grunt to be installed on the same machine simultaneously.
grunt-cli는 명령행 셸일 뿐입니다. 쉽게 말하면 grunt 명령입니다.grunt-cli는 진정한 grunt task runner가 아니다. 진정한task runner는 프로젝트에 따라 설치된 것이다.따라서 서로 다른 항목은 서로 다른 grunt 버전을 사용할 수 있다.구체적으로 말하면 프로젝트의 루트 디렉터리에 패키지를 만듭니다.json, 그 중에서 grunt의dependency를 설정하고 npm install를 실행하면 grunt task runner를 얻을 수 있습니다
grunt 구축 시작
Assuming that the Grunt CLI has been installed and that the project has already been configured with a package.json and a Gruntfile , it's very easy to start working with Grunt:
  • Change to the project's root directory.
  • Install project dependencies with npm install .
  • Run Grunt with grunt .

  • grunt-cli를 설치한 후 프로젝트 루트 디렉터리에 패키지를 준비하십시오.json과 Gruntfile.js 파일, npm install과 grunt 순서대로 실행하면 됩니다
    그 중에서 npm install은 설치 항목에 의존하는 패키지를 다운로드하고, grunt는 Gruntfile를 읽습니다.js, grunt 구축을 실행합니다.Gruntfile.js는ant에 해당한다.xml
    Gruntfile.js의 구성
    A Gruntfile is comprised of the following parts:
  • The "wrapper"function
  • Project and task configuration
  • Loading Grunt plugins and tasks
  • Custom tasks

  • grunt 작업의 층별 관리, 우선plugin,그리고task, 마지막은target.예를 들어grunt-contrib-uglify 이 플러그인은 uglify task를 정의하고 이task에 대해 서로 다른 target을 지정할 수 있습니다 (목적은 서로 다른 설정 파라미터를 적용하는 것입니다)

    좋은 웹페이지 즐겨찾기