Skip to content

Instantly share code, notes, and snippets.

@JeongInyoung
Created June 24, 2014 10:57
Show Gist options
  • Save JeongInyoung/b97be06fb9faad920710 to your computer and use it in GitHub Desktop.
Save JeongInyoung/b97be06fb9faad920710 to your computer and use it in GitHub Desktop.
test
# 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