Created
May 10, 2015 15:31
-
-
Save hiz8/0b665c3b38fc15710b18 to your computer and use it in GitHub Desktop.
SASS watchスタート用バッチファイル
This file contains hidden or 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
| cd /d %~dp0 | |
| :: 現在のディレクトリに移動 | |
| sass --style expanded --watch style.scss:style.css --cache-location sass/.sass-cache | |
| :: 【--style】CSSのフォーマット | |
| :: 【--watch】scssファイルの自動監視 | |
| :: 【sass:html/css】sassファイルの場所:cssファイルの書き出し先 | |
| :: 【--cache-location】キャッシュファイルの保存先 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment