1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/grunt.md

33 lines
656 B
Markdown
Raw Normal View History

2024-10-31 01:50:50 +09:00
# grunt
> 프로세스 자동화를 위한 JavaScript 작업 실행기.
> 더 많은 정보: <https://github.com/gruntjs/grunt-cli>.
- 기본 작업 프로세스를 실행:
`grunt`
- 하나 이상의 작업을 실행:
`grunt {{작업1 작업2 ...}}`
- 대체 구성 파일을 지정:
`grunt --gruntfile {{경로/대상/파일}}`
- 상대 파일에 대한 대체 기본 경로를 지정:
`grunt --base {{경로/대상/디렉터리}}`
- 작업을 검색할 추가 디렉터리를 지정:
`grunt --tasks {{경로/대상/디렉터리}}`
- 파일을 쓰지 않고 테스트 실행을 수행:
`grunt --no-write`
- 도움말 표시:
`grunt --help`