Gulp.js - 在更改时观察和编译 swig.js 模板文件



我遇到了观看我的 Swig.js html 模板并在每次更改时编译它们的问题,我为此目的使用 Gulp .js任务运行器。这是我的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/*.css我都会在 client/css/ 中更新文件..

但是称为模板的任务只给出一次结果。当我更改views/index.html文件时client/index.html保持不变。在我的控制台中,我看到模板任务已运行,但结果仍然相同。

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

也许我缺少一些缓存选项或类似选项?!

Gulp-Swig 已更新为允许禁用缓存选项 - 以及设置其他 swig 默认值,如下所示。

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'));
});

编辑:根据迈克·阿斯基的评论,配置可能不再有效

我有一个类似的问题,gulp-livereload 和 tiny-lr 正在刷新页面但没有显示更新的模板。 我没有使用 gulp-swig(尽管这看起来是一个很好的解决方案),所以我只是更改了应用程序.js

swig = require("swig");
swig.setDefaults({
  cache: false
});
app = express();
app.set('view cache', false);

最新更新