javascript - Gulp.js - watch and compile swig.js template files on change - Stack Overflow

I'm stucked with the problem of watching my Swig.js html templates and piling them on every change

I'm stucked with the problem of watching my Swig.js html templates and piling them on every change, I use Gulp.js task runner for that purpose. Here is my gulpfile.js:

var gulp = require('gulp');
var myth = require('gulp-myth');
var swig = require('gulp-swig');
var nodemon = require('gulp-nodemon');

gulp.task('styles', function () {
  gulp.src('./myth/*.css')
    .pipe(myth())
    .pipe(gulp.dest('./client/css'));
});

gulp.task('templates', function () {
  gulp.src('./views/*.html')
    .pipe(swig({ load_json: true }))
    .pipe(gulp.dest('./client'));
});

gulp.task('server', function () {
  gulp.run('styles');
  gulp.run('templates');

  gulp.src('./server.js').pipe(nodemon());

  gulp.watch('./myth/*.css', function () {
     gulp.run('styles');
  });

  gulp.watch('./views/*.html', function () {
     gulp.run('templates');
  }); 
});

Myth task styles runs fine - on every change of myth/*.css I got updated file in client/css/..

But task called templates gives result only once.. When I change views/index.html file in client/index.html stays the same. In my console I see that templates task was ran but results still the same..

MacBook-Pro-Dmitri:slick-grid dmitri$ gulp server
[gulp] Using file /Users/dmitri/github/slick-grid/gulpfile.js
[gulp] Working directory changed to /Users/dmitri/github/slick-grid
[gulp] Running 'server'...
[gulp] Running 'styles'...
[gulp] Finished 'styles' in 4.02 ms
[gulp] Running 'templates'...
[gulp] Finished 'templates' in 1.29 ms
[gulp] Running 'watch'...
[gulp] Finished 'watch' in 7.23 ms
[gulp] Finished 'server' in 16 ms
>> Strata web server version 0.20.1 running on node 0.10.21
>> Listening on 0.0.0.0:9000, CTRL+C to stop

// Here I changed my views/index.html, task is ran as you see (but dest file won't be updated):

[gulp] Running 'templates'...
[gulp] Finished 'templates' in 668 μs 
127.0.0.1 - - [11/Jan/2014:15:43:20 +-200] "GET / HTTP/1.1" 200 511
127.0.0.1 - - [11/Jan/2014:15:43:20 +-200] "GET /css/reset.css HTTP/1.1" 200 1419
127.0.0.1 - - [11/Jan/2014:15:43:20 +-200] "GET /css/app.css HTTP/1.1" 200 865
127.0.0.1 - - [11/Jan/2014:15:43:20 +-200] "GET /fonts/likeastore-icon-font.ttf HTTP/1.1" 200 15052

Maybe I'm missing some cache options or similar?!

I'm stucked with the problem of watching my Swig.js html templates and piling them on every change, I use Gulp.js task runner for that purpose. Here is my gulpfile.js:

var gulp = require('gulp');
var myth = require('gulp-myth');
var swig = require('gulp-swig');
var nodemon = require('gulp-nodemon');

gulp.task('styles', function () {
  gulp.src('./myth/*.css')
    .pipe(myth())
    .pipe(gulp.dest('./client/css'));
});

gulp.task('templates', function () {
  gulp.src('./views/*.html')
    .pipe(swig({ load_json: true }))
    .pipe(gulp.dest('./client'));
});

gulp.task('server', function () {
  gulp.run('styles');
  gulp.run('templates');

  gulp.src('./server.js').pipe(nodemon());

  gulp.watch('./myth/*.css', function () {
     gulp.run('styles');
  });

  gulp.watch('./views/*.html', function () {
     gulp.run('templates');
  }); 
});

Myth task styles runs fine - on every change of myth/*.css I got updated file in client/css/..

But task called templates gives result only once.. When I change views/index.html file in client/index.html stays the same. In my console I see that templates task was ran but results still the same..

MacBook-Pro-Dmitri:slick-grid dmitri$ gulp server
[gulp] Using file /Users/dmitri/github/slick-grid/gulpfile.js
[gulp] Working directory changed to /Users/dmitri/github/slick-grid
[gulp] Running 'server'...
[gulp] Running 'styles'...
[gulp] Finished 'styles' in 4.02 ms
[gulp] Running 'templates'...
[gulp] Finished 'templates' in 1.29 ms
[gulp] Running 'watch'...
[gulp] Finished 'watch' in 7.23 ms
[gulp] Finished 'server' in 16 ms
>> Strata web server version 0.20.1 running on node 0.10.21
>> Listening on 0.0.0.0:9000, CTRL+C to stop

// Here I changed my views/index.html, task is ran as you see (but dest file won't be updated):

[gulp] Running 'templates'...
[gulp] Finished 'templates' in 668 μs 
127.0.0.1 - - [11/Jan/2014:15:43:20 +-200] "GET / HTTP/1.1" 200 511
127.0.0.1 - - [11/Jan/2014:15:43:20 +-200] "GET /css/reset.css HTTP/1.1" 200 1419
127.0.0.1 - - [11/Jan/2014:15:43:20 +-200] "GET /css/app.css HTTP/1.1" 200 865
127.0.0.1 - - [11/Jan/2014:15:43:20 +-200] "GET /fonts/likeastore-icon-font.ttf HTTP/1.1" 200 15052

Maybe I'm missing some cache options or similar?!

Share asked Jan 11, 2014 at 13:46 KosmetikaKosmetika 21.3k38 gold badges112 silver badges177 bronze badges 2
  • 1 See this issue. Swig caches templates by default and as of yet, there isn't a way to turn off caching with gulp-swig. – robertklep Commented Jan 11, 2014 at 15:26
  • @robertklep thanks! hope this guys will merge soon! – Kosmetika Commented Jan 12, 2014 at 15:38
Add a ment  | 

2 Answers 2

Reset to default 12

Gulp-Swig has been updated to allow disabling of the cache option - as well as setting other swig defaults, as shown below.

gulp.task('templates', function() {
  gulp.src('./views/*.html')
    .pipe(swig({
      load_json: true,
      defaults: {
        cache: false,
        locals: {
          site_name: "My Blog"
        }
      }
    }))
    .pipe(gulp.dest('./client'));
});

Edit: Configuration may no longer work as per Mike Aski's ment

I had a similar issue where gulp-livereload and tiny-lr was refreshing the page but not showing an updated template. I'm not using gulp-swig (although that looks like a good solution), so I just changed app.js:

swig = require("swig");

swig.setDefaults({
  cache: false
});

app = express();

app.set('view cache', false);

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743689666a4490748.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信