Gulp風の開発メモ(途中)

カテゴリー︎: 開発メモ

jQueryも不要

//5秒毎にリロードする(コメントで開始したり停止する)
(function(name){
setTimeout(“location.reload()”,1000*5);
console.log(“作業中! ” + name);
})(“ここはnameの引数です★更新しました。”);

sassのコマンド⇒sass –watch –style expanded style.scss:style.css

PAGE TOP