Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diwao/hestia-pure.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiwao <nakapom@gmail.com>2018-02-20 07:56:59 +0300
committerdiwao <nakapom@gmail.com>2018-02-20 07:56:59 +0300
commit624fbcada7048ab637dff248aca36bb0431ae775 (patch)
treebfff4e16820d8ea11bd022136cf22146a1590161
parent906bd75b54892b9c4b81092fe6bbc629b16514b5 (diff)
gulpファイル調整
-rwxr-xr-xgulpfile.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js
index f972ca2..69bc541 100755
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -24,7 +24,7 @@ const autoprefixerOptions = {
// 各タスク読み込み
gulp.task('style', function(){
- const src = './src/scss/*.scss';
+ const src = './src/scss/**/*.scss';
const dest = './static/css';
return gulp.src(src)
.pipe(plumber({
@@ -44,5 +44,5 @@ gulp.task('style', function(){
// デフォルトタスク
gulp.task('default', function(){
- gulp.watch('./src/scss/*.scss', ['style']);
+ gulp.watch('./src/scss/**/*.scss', ['style']);
});