gulp-pug手表错误

时间:2016-11-21 21:08:46

标签: gulp gulp-watch

我正试图设置我的gulp以观察哈巴狗的变化,但我得到以下错误,我不知道那是什么:

events.js:141
      throw er; // Unhandled 'error' event
      ^
SyntaxError: Unexpected token (19:0)
    at Parser.pp$4.raise (/../node_modules/acorn/dist/acorn.js:2221:15)
    at Parser.pp.unexpected (/../node_modules/acorn/dist/acorn.js:603:10)
    at Parser.pp$3.parseExprAtom (/../node_modules/acorn/dist/acorn.js:1822:12)
    at Parser.pp$3.parseExprSubscripts (/../node_modules/acorn/dist/acorn.js:1715:21)
    at Parser.pp$3.parseMaybeUnary (/../node_modules/acorn/dist/acorn.js:1692:19)
    at Parser.pp$3.parseExprOps (/../node_modules/acorn/dist/acorn.js:1637:21)
    at Parser.pp$3.parseMaybeConditional (/../node_modules/acorn/dist/acorn.js:1620:21)
    at Parser.pp$3.parseMaybeAssign (/../node_modules/acorn/dist/acorn.js:1597:21)
    at Parser.pp$1.parseVar (/../node_modules/acorn/dist/acorn.js:1034:28)
    at Parser.pp$1.parseVarStatement (/../node_modules/acorn/dist/acorn.js:917:10)

我的gulpfile.js看起来像这样:

const gulp = require('gulp');
const pug = require('gulp-pug');    

gulp.task('pug', () =>
  gulp.src('pug/*.pug')
    .pipe(pug({ pretty: false }))
    .pipe(gulp.dest('.'))    
);

gulp.task('watch', function (){
  gulp.watch('pug/*.pug', ['pug']);
});

1 个答案:

答案 0 :(得分:0)

问题可能是.pipe(gulp.dest('.'))您应该指定实际的文件夹名称。例如.pipe(gulp.dest('folderName')) /  .pipe(gulp.dest([__dirname])

另外向return添加gulp.src('pug/*.pug')语句 所以它看起来像

return gulp.src('pug/*.pug')它可以避免包含return语句的错误。

您可以编辑您的问题以包含您的Pug文件吗?