티스토리 뷰
반응형
npm install grunt-cli -g
// grunt 설치
grunt
grunt-cli: The grunt command line interface (v1.2.0)
// 버전 확인
{
"name": "test",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www"
},
"dependencies": {
"grunt": "1.2.0"
}
}
// package.json에 grunt 추가
npm install
// npm 설치하면 node_modules에 grunt 설치됨
grunt build
// 빌드
grunt clean
// 클린
grunt serve
// 서버 시작
grunt test
// karma 테스트
반응형
'Study' 카테고리의 다른 글
yeoman(요먼) 관련 (0) | 2023.01.10 |
---|---|
yeoman(요먼) 설치 관련 (0) | 2023.01.10 |
Aptana(압타나) 관련 (1) | 2023.01.08 |
Java(자바) JSP 설정 관련 (1) | 2023.01.08 |
Java(자바) JSP Tomcat(톰캣) 관련 (0) | 2023.01.08 |
댓글