Created
June 24, 2014 10:57
-
-
Save JeongInyoung/b97be06fb9faad920710 to your computer and use it in GitHub Desktop.
test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compass 프로젝트 생성 | |
compass create 프로젝트폴더이름 | |
# Compass 클린(불필요한 내용 지우기, 캐시, stylesheets 내부 모든 파일 제거)파일 | |
compass clean | |
# sass 폴더 내부의 모든 *.scss 파일을 제거 | |
rm sass/*.scss | |
# stylesheets 폴더 제거 | |
rmdir stylesheets | |
# css 폴더 생성 | |
mkdir css | |
# Compass 감시(watch) 하는 명령 | |
compass watch | |
# Compass 감시 & 소스맵(watch, sourcemap) 하는 명령 | |
compass watch --sourcemap | |
# 폴더와 내부의 모든 파일을 제거하는 명령 | |
rm -r stylesheets |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment