最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Grunt "watch" Warning: Path must be a string. Received undefined - Stack Overflow

programmeradmin1浏览0评论

Grunt "Watch" doesn't want to proceed.

Problem: Running "watch" task Waiting... Warning: Path must be a string. Received undefined

Here is the grunt watch in Gruntfile.js:

watch: {
  //Watch files for changes during "grunt serve"
  main: {
    options: {
        livereload: true,
        livereloadOnError: false,
        spawn: false
    },
    files: [createFolderGlobs(['*.js', '*.less','*.html','*.json']), '!src/bower_ponents/**/*.js', '!src/js/**/*.js', '!_SpecRunner.html','!.grunt'],
    tasks: [] //all the tasks are run dynamically during the watch event handler

  }
},

Grunt "Watch" doesn't want to proceed.

Problem: Running "watch" task Waiting... Warning: Path must be a string. Received undefined

Here is the grunt watch in Gruntfile.js:

watch: {
  //Watch files for changes during "grunt serve"
  main: {
    options: {
        livereload: true,
        livereloadOnError: false,
        spawn: false
    },
    files: [createFolderGlobs(['*.js', '*.less','*.html','*.json']), '!src/bower_ponents/**/*.js', '!src/js/**/*.js', '!_SpecRunner.html','!.grunt'],
    tasks: [] //all the tasks are run dynamically during the watch event handler

  }
},
Share Improve this question asked Nov 26, 2015 at 13:45 VHaxVHax 1112 silver badges7 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 7

I found the issue. You need to upgrade grunt-contrib-jshint.

I had version "grunt-contrib-jshint": "~0.9"

changed to "grunt-contrib-jshint": "^1.0.0"

error is now gone!

I figured it out while I wrote this question.


When I added tags for this question I saw the tag grunt-contrib-watch and got to: https://github./gruntjs/grunt-contrib-watch.

and did this:

$ npm install grunt-contrib-watch --save-dev

...Now it works. I posted it anyway because I couldn't find something about this when I googled.

发布评论

评论列表(0)

  1. 暂无评论